New instance of browser

  • Thread starter Thread starter Tony
  • Start date Start date
T

Tony

vs2002 win xp web forms

How can I "open in new browser" with response.redirect or any other way?

Thanks
 
Hi Tony,

As far as I know, No you are always processing one aspx page (session) at a
time.

Cor
 
Hi Cor,
Thanks for your help.
I must be asking my question incorrectly, there has got to be a way.
Someone visits your website and you do not want them to leave your website.
There are links to http://www.msn.com on your page. I just want to send
them to www.MSN.com in a new browser.
I don't care if they close that browser at msn or explore it a little do
whatever they want.
But my web site is still in a browser, 2 browsers running.

Thanks
 
Hi Tony,

That I have used also for long time on a testserver. I redirected them to an
police office that I think has no soft methods in the US.( I am in Europe),
while it goes to fast that they could not see that. This is not that Police
office.

<html>
<head>
<meta http-equiv="refresh" content="1;url=http://msdn.microsoft.com/">
</head>
</html>

However when that is in ASPX and they do not know the password or whatever

They do not need anymore the log page, so you only have to redirect to a
page as you said the official loginpage is not important anymore.

response.redirect ("MyStopMessage.htm")

I hope this was what you did mean?

Cor
 
Back
Top