Response.Redirect

  • Thread starter Thread starter Bishoy George
  • Start date Start date
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>
 
popup blockers stop this method, should be attached to a client event.

-- bruce (sqlwork.com)

"Call Javascrip from the server side"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top