当前位置: 代码迷 >> ASP.NET >> 怎么实现下载而不是打开
  详细解决方案

怎么实现下载而不是打开

热度:8800   发布时间:2013-02-25 00:00:00.0
如何实现下载而不是打开?
站点下有一个文件MyTest.txt
http://localhost/projectName/MyTest.txt
我想通过这个连接直接下载而不是打开,该如何设置?
谢谢

------解决方案--------------------------------------------------------
<a href="http://localhost/projectName/MyTest.txt">MyTest</a>
------解决方案--------------------------------------------------------
呵呵 等等我给你一个文件 我找找啊 在哪里 呵呵 我有的
------解决方案--------------------------------------------------------
给我你的邮箱
------解决方案--------------------------------------------------------
C# code
ASP.NET文件下载函数使用浅析 【转】2009-08-06 20:31ASP.NET文件下载函数使用是什么情况呢?在你的Page_Load中添加这样的代码:Page.Response.Clear(); bool success = ResponseFile(Page.Request, Page.Response, "目的文件名称", "源文件路径", 1024000); if (!success) Response.Write("下载文件出错!"); Page.Response.End(); ASP.NET文件下载函数代码为:public static bool ResponseFile(HttpRequest _Request,HttpResponse _Response,string _fileName,string _fullPath, long _speed) { try { FileStream myFile = new FileStream(_fullPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); BinaryReader br = new BinaryReader(myFile); try { _Response.AddHeader("Accept-Ranges", "bytes"); _Response.Buffer = false; long fileLength = myFile.Length; long startBytes = 0; double pack = 10240; //10K bytes //int sleep = 200; //每秒5次 即5*10K bytes每秒 int sleep = (int)Math.Floor(1000 * pack / _speed) + 1; if (_Request.Headers["Range"] != null) { _Response.StatusCode = 206; string[] range = _Request.Headers["Range"].Split(new char[] {'=', '-'}); startBytes = Convert.ToInt64(range[1]); } _Response.AddHeader("Content-Length", (fileLength - startBytes).ToString()); if (startBytes != 0) { //Response.AddHeader("Content-Range", string.Format(" bytes {0}-{1}/{2}", startBytes, fileLength-1, fileLength)); } _Response.AddHeader("Connection", "Keep-Alive"); _Response.ContentType = "application/octet-stream"; _Response.AddHeader("Content-Disposition","attachment; filename=" + HttpUtility.UrlEncode(_fileName,System.Text.Encoding.UTF8) ); br.BaseStream.Seek(startBytes, SeekOrigin.Begin); int maxCount = (int) Math.Floor((fileLength - startBytes) / pack) + 1; for (int i = 0; i < maxCount; i++) { if (_Response.IsClientConnected) { _Response.BinaryWrite(br.ReadBytes(int.Parse(pack.ToString()))); Thread.Sleep(sleep); } else { i=maxCount; } } } catch { return false; } finally { br.Close(); myFile.Close(); } } catch { return false; } return true; } 其中:"目的文件名称" 可以是:"a.txt""源文件路径"可以是:@"C:\a.txt"sleep可以是500这样就实现了文件下载时,不管是什么格式的文件,都能够弹出打开/保存窗口.转自:http://dotnet.csdn.net/page/f1c3ea27-4dac-4742-a9a2-d4c6730b9dea 类别:csharp and asp.net |  | 添加到搜藏 | 分享到i贴吧 | 浏览(187) | 评论 (1)  最近读者:
------解决方案--------------------------------------------------------
让客户设置 浏览器不打开
------解决方案--------------------------------------------------------
string url_str = "~/projectName/MyTest.txt";
Response.Redirect(url_str);
------解决方案--------------------------------------------------------
/// <summary>
/// 获取物理地址
/// </summary>
public static string MapPathFile(string FileName)
{
return HttpContext.Current.Server.MapPath(FileName);
}

/// <summary>
/// 普通下载
/// </summary>
/// <param name="FileName">文件虚拟路径</param>
public static void DownLoadold(string FileName)
{
string destFileName = MapPathFile(FileName);
if (File.Exists(destFileName))
{
FileInfo fi = new FileInfo(destFileName);
  相关解决方案