asp.net实现文件下载功能

今天又需要写程序,是网站下载功能。以前曾经有写,是写在一个类别中,http://www.cnblogs.com/insus/articles/1411756.html  也录制过视频,http://www.cnblogs.com/insus/articles/1411761.html 不过还是有网友向Insus.NET索求代码。

今天Insus.NET只好帖出今天写的代码,仅供参考:

< asp:Button  ID ="ButtonDownload"  runat ="server"  OnClick ="ButtonButtonDownload_Click"
                        Text
="下载视频"   />

 

xxx.aspx.cs:

View Code
  protected   void  ButtonButtonDownload_Click( object  sender, EventArgs e)
    {
        HttpResponse _Response 
=  HttpContext.Current.Response;
        
// 取数据表
        DataRow objDataRow  =  objMedia.GetFileByPrimaryKey(id).Rows[ 0 ];
        
// 取得文件目录与文件名。
         string  f  =  objDataRow[ " Directory " ].ToString()  +  objDataRow[ " NewFileName " ].ToString();
        
// 取得旧文件名
         string  fn  =  objDataRow[ " OldFileName " ].ToString();

        FileInfo fileInfo 
=   new  FileInfo(Server.MapPath (f));
        _Response.Clear();
        _Response.ClearHeaders();
        _Response.Buffer 
=   false ;
        _Response.ContentType 
=   " application/octet-stream " ;
        _Response.AppendHeader(
" Content-Disposition " " attachment;filename= "   +  HttpUtility.UrlEncode(fn, System.Text.Encoding.UTF8));
        _Response.AppendHeader(
" Content-Length " , fileInfo.Length.ToString());
        _Response.WriteFile(fileInfo.FullName);
        _Response.Flush();
        _Response.End();
    }

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值