我正在尝试使用MVC 视图页面<embed>
或<object>
在 MVC 视图页面中显示 PDF。
查看.cshtml
<object data="@Server.MapPath(ViewBag.FileName)" type="application/pdf" >
If you are unable to view file, you can download from
</object>
当我查看页面时,我得到了正确的 PDF 路径,但 PDF 在页面中不可见。
我的相同代码正在处理简单的 HTML 文件。