我想在浏览器的新选项卡上打开一个页面,点击按钮。
我在谷歌搜索了很多,但我找不到任何东西。
这是我的按钮
<asp:Button ID="btnNewEntry" runat="Server" CssClass="button" Text="New Entry" OnClick="btnNewEntry_Click" /> protected void btnNewEntry_Click(object sender,EventArgs e) { Response.Redirect("New.aspx"); }
你能帮我一下吗?
解决方法
你可以使用window.open。喜欢这个:
protected void btnNewEntry_Click(object sender,EventArgs e) { Page.ClientScript.RegisterStartupScript( this.GetType(),"OpenWindow","window.open('YourURL','_newtab');",true); }