.net常用下载文件代码

来源:互联网 发布:王祖贤情史 知乎 编辑:程序博客网 时间:2024/06/05 12:04
private void downLoad(string filenamed) { string path = Server.MapPath("attPath/") + filenamed; FileInfo fi = new FileInfo(path); if (fi.Exists) { Response.Clear(); Response.AddHeader("Content-Disposition", "attachment;filename=" + Server.UrlEncode(filenamed)); Response.AddHeader("Content-Length", fi.Length.ToString()); Response.ContentType = "application/octet-stream;charset=gb2321"; Response.WriteFile(fi.FullName); Response.Flush(); Response.Close(); Response.End(); } }