如何在ASP.net Web应用程序中显示pdf文件?

时间:2016-05-12 15:25:45

标签: c# asp.net .net web

我想点击我的链接按钮并打开我的项目所拥有的pdf文件。 我怎样才能做到这一点?

在aspx页面中:

在cs页面中: private void pdfShow_Click(){

///请帮忙。 }

1 个答案:

答案 0 :(得分:0)

试试这个更简单 Response.Clear();

string filePath = ur file path on the server like ~/123.pdf

Response.contentType = "application/pdf";

Response.WriteFile(filePath);