我想在网页中加载我的 pdf 文件。用户不应有权保存或打印文件。下面的代码将 pdf 文件作为附件打开,但我想直接在页面中打开它。
还请提供任何可以禁用 pdf 菜单栏的 javascript..
Response.ContentType = "Application/pdf";
Response.AppendHeader("content-disposition", "attachment; filename=" + old_filename + ".pdf");
Response.TransmitFile(Server.MapPath("~/pdf_files/" + old_filename));
Response.End();