Hi I have this codes so that the next page will open in a new tab on IE, however I wanted to set the size of the new tab page and disable some items. How do i do this?
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