工资不涨,物价在疯狂的涨!

博客园 首页 新随笔 联系 订阅 管理

在asp.net中显示PDF的方法:

一、直接显示,使用的还是原页面的URL
Response.ContentType = "application/pdf";

Response.Clear();

Response.TransmitFile(@"SharePoint.pdf");

Response.End();

 

二、以PDF文件做为URL进行显示

Response.Redirect("Sharepoint.pdf");

三、点击进行下载
Response.ClearHeaders();

Response.ContentType = "application/pdf";

Response.Clear();

Response.AppendHeader("Content-Disposition", "attachment;Filename=SharePoint.pdf");

Response.TransmitFile(@"SharePoint.pdf");

Response.End();

 

 

 

posted on 2009-02-23 17:05  腾云驾雾  阅读(4740)  评论(0编辑  收藏  举报