Response.Redirect to a new browser window?

  • Thread starter Thread starter Jules Lucas
  • Start date Start date
J

Jules Lucas

Can I do some kind of response.redirect to a new browser
window?

I need to use session variables in the new window and
process some things on the page load.
 
Just an additional point: You can use Page.RegisterStartupScript() on the
server to add the "window.open()" code the the page when it reloads in the
browser, so that in essence, you are opening the new window from the server.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Complex things are made up of
lots of simple things.
 
User Server.Transfer. Your session variables will be
available when the new page loads...
 
Back
Top