您好我有这些代码,以便下一页将在IE上的新标签页中打开,但是我想设置新标签页的大小并禁用一些项目。我该怎么做?
If e.CommandName = "View" Then
Session("VisitorReport") = hdnSelectedTab.Value
Session("VisitID") = e.CommandArgument
ClientScript.RegisterStartupScript(Page.GetType(), "NewTab", "window.open('ViewVisitor.aspx');", True)
End If
答案 0 :(得分:1)
查看window.open和Open a URL in a new tab (and not a new window) using JavaScript
注意:您无法在没有用户干预的情况下从浏览器控制客户端功能,例如在新标签页中打开新窗口。
答案 1 :(得分:0)
ClientScript.RegisterStartupScript(Page.GetType(), "NewTab", "window.open('ViewVisitor.aspx','','toolbar=yes,location=no,width=1050,height=750');", True)