如何使用C#在网页中加载PDF文件

时间:2010-04-13 15:57:56

标签: c#

如何使用C#

在网页中加载PDF文件

1 个答案:

答案 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();
    }