继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

asp.net实现文件下载功能

慕森王
关注TA
已关注
手记 442
粉丝 108
获赞 552

今天又需要写程序,是网站下载功能。以前曾经有写,是写在一个类别中,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();
    }

 

 

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP