关于asp.net简单的下载问题_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 关于asp.net简单的下载问题

关于asp.net简单的下载问题

 2014/11/11 13:00:24  Brilliant#  程序员俱乐部  我要评论(0)
  • 摘要:asp.net中的一个简单的下载,只需将文件路径引入就能实现下载,比如一个本地文件<ahref="file:/C:/苍老师.jpg"></a>网页上的下载也是如此http://w.x.baidu.com/alading/anquan_soft_down_normal/12350今天下载碰到一个问题,找不到服务器上的web路径,但是从服务器上知道了文件的绝对路径于是新建了一个页面上传到服务器,点击下载跳转到该页面,在页面上获取到本地文件就能进行下载页面代码如下
  • 标签:.net ASP.NET net 下载 问题

    asp.net中的一个简单的下载,只需将文件路径引入就能实现下载,

    比如一个本地文件 <a href="file:/C:/苍老师.jpg"></a>

    网页上的下载也是如此 http://w.x.baidu.com/alading/anquan_soft_down_normal/12350

    今天下载碰到一个问题,找不到服务器上的web路径,但是从服务器上知道了文件的绝对路径  

    于是新建了一个页面上传到服务器,点击下载跳转到该页面,在页面上获取到本地文件就能进行下载

    页面代码如下:

    

 1  1  string url = "文件名.doc"
 2  2  string DownloadTitle = "标题"; 
 3  3  string downpath = "E:/Tiku_Soft/" + url;
 4  4             HttpContext.Current.Response.ContentType = "application/ms-download";
 5  5             string s_path = downpath.Trim();
 6  6             System.IO.FileInfo file = new System.IO.FileInfo(s_path);
 7  7             HttpContext.Current.Response.Clear();
 8  8             HttpContext.Current.Response.AddHeader("Content-Type", "application/octet-stream");
 9  9             HttpContext.Current.Response.Charset = "utf-8";
10 10             HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=\"" + DownloadTitle + ".doc" + "\"");
11 11             HttpContext.Current.Response.AddHeader("Content-Length", file.Length.ToString());
12 12             HttpContext.Current.Response.WriteFile(file.FullName.Trim());
13 13             HttpContext.Current.ApplicationInstance.CompleteRequest();

 

发表评论
用户名: 匿名