我想點擊我的linkbutton並打開該項目的PDF文件。 我該怎麼做?如何在我的ASP.net Web應用程序中顯示pdf文件?
在aspx頁面:
在CS頁面: 私人無效pdfShow_Click(){
///請幫助這個。 }
我想點擊我的linkbutton並打開該項目的PDF文件。 我該怎麼做?如何在我的ASP.net Web應用程序中顯示pdf文件?
在aspx頁面:
在CS頁面: 私人無效pdfShow_Click(){
///請幫助這個。 }
試試這個更簡單 Response.Clear();
string filePath = ur file path on the server like ~/123.pdf
Response.contentType = "application/pdf";
Response.WriteFile(filePath);
您在哪裏存儲PDF文件系統或數據庫? – Win