vote up 7 vote down star
3

What is the best way to implement, from a web page a download action using asp.net 2.0?

Log files for a action are created in a directory called [Application Root]/Logs. I have the full path and want to provide a button, that when clicked will download the log file from the IIS server to the users local pc.

flag
Would you use Response.TransmitFile( for a small file as well? – Brian G Sep 18 '08 at 13:08

1 Answer

vote up 10 vote down check

Does this help:

http://www.west-wind.com/weblog/posts/76293.aspx

Response.ContentType = "application/octet-stream";
Response.AppendHeader("Content-Disposition","attachment; filename=logfile.txt");
Response.TransmitFile( Server.MapPath("~/logfile.txt") );
Response.End();

Response.TransmitFile is the accepted way of sending large files, instead of Response.WriteFile.

link|flag
1  
A KEY part of this is the Response.End() - without it you will end up with occasionally corrupt downloads, broken digital signatures, all sorts of weirdness. – Jason Short Apr 21 at 4:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.