码迷,mamicode.com
首页 > Web开发 > 详细

asp.net下载的方法

时间:2014-09-11 18:44:12      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:io   os   文件   sp   cti   on   c   ad   new   

public void DownLoad( )
{
string filePath = Server.MapPath( @"\UserFile\" );//这里注意了,你得指明要下载文件的路径.

if ( System.IO.File.Exists( filePath ) )
{
FileInfo file = new FileInfo( filePath );
Response.ContentEncoding = System.Text.Encoding.GetEncoding( "UTF-8" ); //解决中文乱码
Response.AddHeader( "Content-Disposition", "attachment; filename=" + Server.UrlEncode( file.Name ) ); //解决中文文件名乱码
Response.AddHeader( "Content-length", file.Length.ToString() );
Response.ContentType = "appliction/octet-stream";
Response.WriteFile( file.FullName );
Response.End();
}
}

asp.net下载的方法

标签:io   os   文件   sp   cti   on   c   ad   new   

原文地址:http://www.cnblogs.com/BoYu045535/p/3966785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!