首页 > 代码库 > asp.net 超链接 下载TEXT文件,而不是直接在IE中打开
asp.net 超链接 下载TEXT文件,而不是直接在IE中打开
问题描述:后台生成了文本文件,用超链接提供给用户下载。点击超链接,下载Excel文件没问题,但文本文件会直接被打开,而不是弹出下载窗口。
解决方法:把HyperLink改为LinkButton,在Click事件中,用文件流写文本文件。
关键代码:
1 protected void Button1_Click(object sender, EventArgs e) 2 { 3 string sFileName = System.IO.Path.GetRandomFileName(); 4 string sGenName = "Friendly.txt"; 5 6 //YOu could omit these lines here as you may 7 //not want to save the textfile to the server 8 //I have just left them here to demonstrate that you could create the text file 9 using (System.IO.StreamWriter SW = new System.IO.StreamWriter(10 Server.MapPath("TextFiles/" + sFileName + ".txt")))11 {12 SW.WriteLine(txtText.Text);13 SW.Close();14 }15 16 System.IO.FileStream fs = null;17 fs = System.IO.File.Open(Server.MapPath("TextFiles/" + 18 sFileName + ".txt"), System.IO.FileMode.Open);19 byte[] btFile = new byte[fs.Length];20 fs.Read(btFile, 0, Convert.ToInt32(fs.Length));21 fs.Close();22 Response.AddHeader("Content-disposition", "attachment; filename=" + 23 sGenName);24 Response.ContentType = "application/octet-stream";25 Response.BinaryWrite(btFile);26 Response.End();27 }
参考文档:http://www.codeproject.com/useritems/textfile.asp
asp.net 超链接 下载TEXT文件,而不是直接在IE中打开
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。