我在嵌套的datalist中有一个Imagebutton 单击图像按钮时,我必须打开一个pdf文件。我在代码后面尝试了window.open()方法。但它根本不工作。也尝试过OnClientClick事件。提前致谢
答案 0 :(得分:0)
刚试过,这会在新标签页中打开PDF。
<asp:ImageButton ImageUrl="/Content/sample.jpg" runat="server" Width="100"
OnClientClick="javascript:window.open('/Content/sample.pdf'); return false;" />