使用asp.net怎么将服务器文件下载到本地
更新:HHH   时间:2023-1-7


本篇文章为大家展示了使用asp.net怎么将服务器文件下载到本地,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

1、说明

  通过文件下载框实现将服务器上的文件下载到本地指定位置。这里需要指定服务器文件路径

//服务器文件路径
string strFilePath = Server.MapPath("~") + "/excel/20170206104654.xlsx";
FileInfo fileInfo = new FileInfo(strFilePath);
Response.Clear();
Response.AddHeader("content-disposition", "attachment;filename=" + Server.UrlEncode(fileInfo.Name.ToString()));
Response.AddHeader("content-length", fileInfo.Length.ToString());
Response.ContentType = "application/octet-stream";
Response.ContentEncoding = System.Text.Encoding.Default;
Response.WriteFile(strFilePath);

上述内容就是使用asp.net怎么将服务器文件下载到本地,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注天达云行业资讯频道。

返回开发技术教程...