T Tyrant Mikey Sep 26, 2005 #4 On the server side? I don't believe you can. On the client side, you can use DHTML. <SCRIPT language="js"> void RedirectToNewWindow() { var wnd = window.open("mydocument.aspx", "WindowName", "statusbar,menubar,width=400,height=200"); wnd.focus(); } </SCRIPT>
On the server side? I don't believe you can. On the client side, you can use DHTML. <SCRIPT language="js"> void RedirectToNewWindow() { var wnd = window.open("mydocument.aspx", "WindowName", "statusbar,menubar,width=400,height=200"); wnd.focus(); } </SCRIPT>
G Guest Sep 26, 2005 #5 Use Page.RegisterStartupScript to launch Javascript code from the server side. Ryan
B Bruce Barker Sep 26, 2005 #6 popup blockers stop this method, should be attached to a client event. -- bruce (sqlwork.com) "Call Javascrip from the server side"
popup blockers stop this method, should be attached to a client event. -- bruce (sqlwork.com) "Call Javascrip from the server side"