我想点击我的链接按钮并打开我的项目所拥有的pdf文件。 我怎样才能做到这一点?
在aspx页面中:
在cs页面中: private void pdfShow_Click(){
///请帮忙。 }
答案 0 :(得分:0)
试试这个更简单 Response.Clear();
string filePath = ur file path on the server like ~/123.pdf
Response.contentType = "application/pdf";
Response.WriteFile(filePath);