Print1.aspx.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. public partial class Print : System.Web.UI.Page
  8. {
  9. protected void Page_Load(object sender, EventArgs e)
  10. {
  11. }
  12. protected void Button1_Click(object sender, EventArgs e)
  13. {
  14. }
  15. protected void Button2_Click(object sender, EventArgs e)
  16. {
  17. }
  18. protected void Button3_Click(object sender, EventArgs e)
  19. {
  20. // ASP.NET实现将网页内容输出到WORD并下载到本地
  21. // 个人觉得要实现这个功能如果没有类库提供的几个关键函数,还是比较繁琐的。所以首先介绍几个将要在代码中使用的关键函数和参数,然后再说函数实现、注意问题等。
  22. // 关键函数:
  23. // 1.函数原型:Response.AppendHeader(name,value);
  24. // 本例中使用: Response.AppendHeader("Content-Disposition", "attachment;filename=fileDown.doc");
  25. // 说明:将http头添加到输出流,name 为Http头,value为Http头的值,可以实现刷新页面,页面跳转,文件下载等,就看你name的值是什么。例如在本例中使用name为Content-Disposition:
  26. // Content-Disposition:是 MIME 协议的扩展,MIME 协议指示 MIME 用户代理如何显示附加的文件。当 Internet Explorer 接收到头时,它会激活浏览器文 件下载对话框,它的文件名框自动填充了头中指定的文件名,来确保浏览器弹出下载对话框。
  27. //在本例中value的值为attachment;filename=fileDown.doc:
  28. // attachment: attachment 参数表示作为附件下载,您可以改成 online在线打开 ,filename自定义下载的文件名称,文件后缀为想要下载的文件类型,后面有说明。
  29. // 2.Response.ContentType
  30. // 本例中设置:Response.ContentType = "application/ms-word";
  31. // 说明:指定文件类型 可以为application/ms-excel , application/ms-word,application/ms-txt,application/ms-html或其他浏览器可直接支持文档。
  32. // 3.System.Web.UI.HtmlTextWriter类
  33. // 说明:将标记字符和文本写入到 ASP.NET 服务器控件输出流,也就是用于把HTML内容输出到服务器控件输出流的一个类。在本例中是将要下载的页面内容输出到一个StringWriter对象中。
  34. // 4.RenderControl(HtmlWriter);
  35. // 说明:将服务器控件的内容输出到所提供的HtmlWriter对象中,在本例中是将要下载的页面内容输出到HtmlWriter中。
  36. // 注意:在本例中需要将页面的EnableEventValidation="false",<pages enableEventValidation="false"/>不然会执行出错。
  37. // 实现思想:
  38. // 第一步:设置Response的格式,缓冲,编码等,调用AppendHeader函数用于弹出浏览器保存文件对话框,并设置文件名字、类型以及保存方式(在线浏览还是作为附件保存)。
  39. // 第二步:初始化HtmlWriter,将下载页面内容输出给HtmlWriter,并将内容输出到一个StringWriter对象中。
  40. // 第三步:将StringWriter对象的值赋值给一个string对象,然后操作字符串对象,截取想要下载的内容。
  41. // 第四步:调用Response.Write将string对象输出到第一步指定的文件中。
  42. //注意:在本例中需要将页面的EnableEventValidation="false",<pages enableEventValidation="false"/>不然会执行出错。
  43. //设置Http的头信息,编码格式
  44. HttpContext.Current.Response.Buffer = true;
  45. HttpContext.Current.Response.Clear();
  46. HttpContext.Current.Response.Charset = "gb2312";
  47. HttpContext.Current.Response.ClearContent();
  48. HttpContext.Current.Response.ClearHeaders();
  49. Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");
  50. HttpContext.Current.Response.ContentType = "application/ms-word";
  51. HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=fileDown.doc");
  52. //关闭控件的视图状态 ,如果仍然为true,RenderControl将启用页的跟踪功能,存储与控件有关的跟踪信息
  53. this.EnableViewState = false;
  54. //将要下载的页面输出到HtmlWriter
  55. System.IO.StringWriter writer = new System.IO.StringWriter();
  56. System.Web.UI.HtmlTextWriter htmlWriter = new System.Web.UI.HtmlTextWriter(writer);
  57. this.RenderControl(htmlWriter);
  58. //提取要输出的内容
  59. string pageHtml = writer.ToString();
  60. int startIndex = pageHtml.IndexOf("<div style=\"margin: 0 auto;\" id=\"mainContent\">");
  61. int endIndex = pageHtml.LastIndexOf("</div>");
  62. //int lenth = endIndex - startIndex;
  63. //pageHtml = pageHtml.Substring(startIndex, lenth);
  64. ////输出
  65. //HttpContext.Current.Response.Write(pageHtml.ToString());
  66. HttpContext.Current.Response.End();
  67. }
  68. }