affiliate marketing Dot Net Posts: Download any file in asp.net with c#

Sunday, 31 July 2011

Download any file in asp.net with c#

private void Downloadfile()
{
System.IO.FileInfo file = new System.IO.FileInfo(@"D:\csv.csv");

if (file.Exists)
{

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

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

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

Response.WriteFile(file.FullName);

Response.End();

}

}

No comments:

Post a Comment