Response.Clear(); Response.ClearHeaders(); Response.ClearContent(); Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name); Response.AddHeader("Content-Length", file.Length.ToString()); Response.ContentType = "application/vnd.ms-excel"; //mime-type for .xls extension Response.Flush(); Response.TransmitFile(file.FullName); Response.End();
http://hashtagakash.wordpress.com/
Login to post response