如何从vb.net中的代码设置html Object(tag)值

时间:2017-08-16 20:36:23

标签: c# html asp.net vb.net

我有以下代码<object data="/download/test.pdf" id="pdffile" type="application/pdf" width="900px" height="1200px" runat="server" >

在这里,我想从vb.net中的代码设置数据值。

1 个答案:

答案 0 :(得分:0)

我在aspx页面中使用了literal并将html文本放在页面后面的代码中

Literal1.Text = "<object width = '700px' height='800px' data='" + "/download/Invoice_PDF/" & Path.GetFileName(filepath) & ".pdf" + "'></Object>"