Click to See Complete Forum and Search --> : How can I open a new window in a asp page with a new session?


beersoccer
12-15-2003, 11:35 AM
I want to open a new window from the original asp page with a new session? How can I do it? Is it possible? I have tried the method, window.open(), of vbscript and javascript, but they all didn't work. The new window is in the same session as the original one. Please help me. Thanks!

PeOfEo
12-15-2003, 04:59 PM
To open a new window like that is client side and cannot be called by a server side technology the way you are trying to do it. You are going to have to open a window client side with java script or something. I do not know of any way to do it in asp.net classic or .net (or any other server side langauges). As far as the sessions are concerned, the page you open in the new window will need to be in a different virtual directory or you are going to need to just play with some new session variables if you want separate logins or something.