在ASP.NET的网页中打开PDF

Laj*_*ker 2 c# pdf asp.net

我想在ASP.NET aspx页面中打开PDF.我不想导出pdf文件.

只需在ASPX页面中编写pdf文件,就像我们将字节写入Image控件一样.

Laj*_*ker 6

我得到了答案,这太简单了.

我在这里回答.

Response.Clear();
string filePath = "myfile.pdf";
Response.contentType = "application/pdf";
Response.WriteFile(filePath);
Response.End();
Run Code Online (Sandbox Code Playgroud)