Download file programatically?

  • Thread starter Thread starter Steve C. Orr [MVP, MCSD]
  • Start date Start date
S

Steve C. Orr [MVP, MCSD]

You should use something like Forms Authentication to be sure you know who
is requesting the file download.
Here's more info:
http://www.dotnetbips.com/displayarticle.aspx?id=9
http://www.4guysfromrolla.com/webtech/121901-1.2.shtml
http://www.dotnetbips.com/displayarticle.aspx?id=117

You can store your files in a database or a secured directory on your
server. Then you can use Response.WriteFile to output the file
programatically.
http://msdn.microsoft.com/library/d...fsystemwebhttpresponseclasswritefiletopic.asp
 
Does anybody know how to start a download programatically but first check
who is actually downloading the file?
 
Back
Top