源自:邀月 (个人网站)
本例演示了如何从文件中检索二进制数据,然后如何使用 asp.net 和 visual c# 将该数据写出到浏览器中。尽管此演示使用的是 adobe acrobat (.pdf) 文件(web 应用程序开发人员常使用这种文件),但您也可以对其他二进制文件格式使用此过程。
1、确保要从其上查看 .aspx 页的客户端计算机上已安装了 adobe acrobat reader,以便浏览器能够正确读取并呈现二进制数据。可以从以下 adobe 网站下载 adobe acrobat reader:
http://www.chinese-s.adobe.com/main.html (http://www.adobe.com)
2、确保将您的页面添加到项目中在上一节中添加的 .pdf 文件所在的级别。这一点非常重要,因为代码最初引用 .pdf 文件时采用相对路径。
在代码隐藏页的 page_load 事件中,单击“编辑”菜单上的“粘贴”以粘贴代码:
2、确保将您的页面添加到项目中在上一节中添加的 .pdf 文件所在的级别。这一点非常重要,因为代码最初引用 .pdf 文件时采用相对路径。
在代码隐藏页的 page_load 事件中,单击“编辑”菜单上的“粘贴”以粘贴代码:
在代码隐藏页的 page_load 事件中,加入以下代码: private void page_load(object sender, system.eventargs e) { //set the appropriate contenttype. response.contenttype = "application/pdf"; //get the physical path to the file. string filepath = mappath("acrobat.pdf"); //write the file directly to the http content output stream. response.writefile(filepath); response.end(); } |
文章整理:西部数码--专业提供域名注册、虚拟主机服务
http://www.west263.com
以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!



}
