在asp.net的新标签页中打开pdf页面

时间:2015-08-21 04:03:09

标签: asp.net

我在嵌套的datalist中有一个Imagebutton 单击图像按钮时,我必须打开一个pdf文件。我在代码后面尝试了window.open()方法。但它根本不工作。也尝试过OnClientClick事件。提前致谢

1 个答案:

答案 0 :(得分:0)

刚试过,这会在新标签页中打开PDF。

<asp:ImageButton ImageUrl="/Content/sample.jpg" runat="server" Width="100" 
        OnClientClick="javascript:window.open('/Content/sample.pdf'); return false;" />