答案 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));