积分不够,无法下载资源,请看这里! 争做班主任,享特权 ! 如何在本论坛上传大文件? 有好源码,想换点钱,来这里!
1/1页1 跳转到查看:974
发新话题 回复该主题

asp.net下载文件出现提示框或者直接显示在浏览器中

asp.net下载文件出现提示框或者直接显示在浏览器中

有个朋友问我下载弹出提示框的写法,具体如下:

出现提示框



string strFile="F:\\a.doc";//路径根据实际情况而定
if(!System.IO.File.Exists(strFile))
  {
    Response.Write("<script language='javascript'>alert('对不起,文件不存在!');</script>");
    return;
  }
  Response.Clear();
  Response.ClearHeaders();
  Response.Charset = "GB2312";
  Response.ContentEncoding =System.Text.Encoding.UTF8;
  Response.ContentType = "application/octet-stream";
  FileInfo fi=new FileInfo(strFile);
  Response.AddHeader("Content-Disposition","attachment;  filename="  +  HttpUtility.UrlEncode(fi.Name)) ;
  Response.AddHeader("Content-Length",fi.Length.ToString());
  byte[] tmpbyte=new byte[1024*8];
  FileStream fs=fi.OpenRead();
  int count;
  while((count=fs.Read(tmpbyte,0,tmpbyte.Length))>0)
  {
    Response.BinaryWrite(tmpbyte);
    Response.Flush();
  }
  fs.Close(); 
  Response.End();



直接在浏览器中打开


  string strFile="F:\\a.doc";//路径根据实际情况而定
  Response.Clear();
  Response.ClearHeaders();
  Response.Charset = "GB2312";
  Response.ContentEncoding =System.Text.Encoding.UTF8;
  Response.ContentType = "application/msword";
  Response.WriteFile(strFile);


http://www.Aspx1.Com
请帮忙宣传Aspx1 , Aspx1是ASP.NET学习者的家园 , 适宜长期居住.

TOP

 

回复: asp.net下载文件出现提示框或者直接显示在浏览器中

好东西阿

TOP

 

回复:asp.net下载文件出现提示框或者直接显示在浏览器中

存档了 ,谢谢

TOP

 

回复:asp.net下载文件出现提示框或者直接显示在浏览器中

Thanks,最近刚好在搞这个,这篇东东不错我就不客气收下了
路漫漫其修远兮 吾将上下而求索

TOP

 

回复: asp.net下载文件出现提示框或者直接显示在浏览器中

这是我之前根据另外一个版本写的代码,跟上面那个有一些区别

///
/// 在页面中显示下载对话框并下载指定的文件,webPage为页面对象引用(一般赋值Page),filePath为下载文件虚拟路径,fileName为对话框中显示的文件名
///
public static void DownloadFile(Page webPage, string filePath, string fileName)
{
HttpResponse Response = webPage.Response;
FileInfo aFile = new FileInfo(webPage.Server.MapPath(filePath));
Response.Clear();
Response.ClearHeaders();
Response.BufferOutput = false;
Response.ContentType = "application/octet-stream";
Response.AppendHeader("Content-disposition", "attachment;filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
Response.AddHeader("Content-Length", aFile.Length.ToString());
Response.WriteFile(filePath);
Response.Flush();
Response.End();
}


我初学也不太懂这些区别是怎么回事,大家看一下吧
路漫漫其修远兮 吾将上下而求索

TOP

 

回复:asp.net下载文件出现提示框或者直接显示在浏览器中

我看着一样啊

TOP

 
1/1页1 跳转到
发表新主题 回复该主题