Force File to Download

  • Thread starter Thread starter Albano Alves
  • Start date Start date
A

Albano Alves

Hi!

How can I force the file download, for example a .doc?
I don't want to open with IE.

Thanks.

Albano Alves
 
How can I force the file download, for example a .doc?
I don't want to open with IE.

Response.Clear();

objFileInfo = new FileInfo(strFile); // fully-qualified filespec

Response.AddHeader("Content-Disposition", "attachment; filename=" +
objFileInfo.Name);

Response.AddHeader("Content-Length", objFileInfo.Length.ToString());

Response.ContentType = "application/octet-stream";

Response.WriteFile(objFileInfo.FullName);
 
Back
Top