如何使用C#
在网页中加载PDF文件答案 0 :(得分:3)
以下是将文件发送到浏览器的方法。
http://support.microsoft.com/kb/306654
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();
}