如何在IFrame中打开Pdf文件?

时间:2018-07-06 16:19:07

标签: c#

如何(在候选人列表中)选择一个pdf / docx文件并在iframe中打开它? 这是候选人列表的图像: enter image description here

1 个答案:

答案 0 :(得分:0)

不确切知道要在哪里显示该iframe,但是此代码将为您提供帮助:

将文字插入aspx:

<asp:Literal ID="Literal1" runat="server"></asp:Literal>

这是您的C#

string pathFinal = "pdf/yourPDF.pdf"
string embed = "<object data=\"{0}\" type=\"application/pdf\" width=\"100%\" height=\"800px\">";
embed += "If you are unable to view file, you can download from <a href = \"{0}\">here</a></object>";
Literal1.Text = string.Format(embed, ResolveUrl(pathFinal));