Geekpedia Programming Tutorials









Initiate download using ASP.NET

Sample code on how to initiate the download of a local server file through the Internet, using ASP.NET and its FileStream object. This code is written in C# but can be easily converted to VB.NET.

On Wednesday, March 19th 2008 at 10:12 PM
By Andrei Pociu (View Profile)
-----   (Rated 0 with 0 votes)
Contextual Ads
More ASP.NET Resources
Advertisement
  1. FileStream fStream = new FileStream(@"C:\TheOrchid.zip", FileMode.Open, FileAccess.Read);
  2. byte[] byteBuffer = new byte[(int)fStream.Length];
  3. fStream.Read(byteBuffer, 0, (int)fStream.Length);
  4. fStream.Close();
  5.  
  6. Response.Clear();
  7. Response.ContentType = "application/octet-stream";
  8. Response.AddHeader("Content-Length", byteBuffer.Length.ToString());
  9. Response.AddHeader("Content-Disposition", "attachment; filename=ThePearl.zip");
  10. Response.BinaryWrite(byteBuffer);
  11. Response.End();
  12.  
Digg Digg It!     Del.icio.us Del.icio.us     Reddit Reddit     StumbleUpon StumbleIt     Newsvine Newsvine     Furl Furl     BlinkList BlinkList

Rate Rate this code snippet
Comment Current Comments
by Andreea on Tuesday, May 13th 2008 at 02:17 AM

Buna, Andrei!
Numele meu este Andreea si sunt studenta la ASE, Informatica Economica. Imi fac lucrarea de licenta in ASP.NET, C#. La un moment dat, m-am impotmolit. Crezi ca ma poti ajuta, te rog? As vrea sa iau legatura cu tine si sa discutam, daca ai putin timp liber. Am vazut ca esti o persoana foarte desteapta si priceputa in ceea ce face: programare si de aceea mi-am luat inima in dinti si am apelat la tine.
Ti-am scris in romana, pentru ca banuiesc ca esti roman, dupa nume. Adresa mea de email este nevena_cs_86@yahoo.com.
Te rog, ajuta-ma pentru ca am mare nevoie.

Iti multumesc mult anticipat, Andreea.


Comment Comment on this tutorial
Name: Email:
Message:
Comment Related Source Code
There is no related code.

Comment Related Tutorials
There are no related tutorials.

Jobs ASP.NET Job Search
My skills include:
Enter a City:

Select a State:


Advanced Search >>
Latest Tech Bargains

Advertisement

Free Magazine Subscriptions

Today's Pictures

Today's Video

Other Resources

Latest Downloads

Latest Icons