首页 > 其他 > 详细

下载

时间:2014-04-10 19:02:47      阅读:392      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
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();
          }
}
bubuko.com,布布扣

 

下载,布布扣,bubuko.com

下载

原文:http://www.cnblogs.com/wanglao/p/3655852.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!