45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:通过asp.net下载附件的步骤

通过asp.net下载附件的步骤

2016-08-31 09:29:07 来源:www.45fan.com 【

通过asp.net下载附件的步骤

protected void Page_Load(object sender, EventArgs e)
{
if (Request.QueryString["ID"] == null)
return;

string AttaID = Request.QueryString["ID"].ToString();
string FileName = Request.QueryString["FileName"].ToString();

byte[] filebyte = new WebClass.Errands().Customer_Atta_Get(AttaID);
Response.Clear();
Response.AppendHeader("Content-Disposition", "attachment;filename=" +Server.UrlEncode(FileName));
Response.AppendHeader("Content-Length", filebyte.Length.ToString());
Response.ContentType = "application/octet-stream";
Response.OutputStream.Write(filebyte, 0, filebyte.Length);
Response.End();
}


 

本文地址:http://www.45fan.com/a/question/70116.html
Tags: ASP.NET 附件 protected
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部