How to view PDF document in MVC and not download it directly?
问题 I have a link on click on it an HTML page will be converted to PDF document then return this PDF file to the user. HTML code: <li><a href='@Url.Action("GetHTMLPageAsPDF", "Transaction", new { empID = employee.emplID })'>ViewReceipt</a></li> Code behind: public FileResult GetHTMLPageAsPDF(long empID) { string htmlPagePath = "anypath..."; // convert html page to pdf PageToPDF obj_PageToPDF = new PageToPDF(); byte[] databytes = obj_PageToPDF.ConvertURLToPDF(htmlPagePath); // return resulted pdf