New browser window

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have done this loads of time, but need a reminder - how do i load up a new
browser window from code?

(Brain is fried - i have been doing Winforms!)

Guy
 
I have done this loads of time, but need a reminder - how do i load up a
new
browser window from code?

(Brain is fried - i have been doing Winforms!)

JavaScript...

window.open(.........);
 
sorry I did not make myself clear, i mean in VB.NET

You obviously can't open browser windows server-side...

You need to use client-side JavaScript, though you can make your server-side
code send the necessary JavaScript down to the client...
 
Hmm, I have done it before, there is a command that you pass a URL and an
Enum to which allows you to fire up an new Browser instance, redirect in the
current instance etc...

Guy
 
Hmm, I have done it before, there is a command that you pass a URL and an
Enum to which allows you to fire up an new Browser instance, redirect in
the
current instance etc...

There is no way to open a client window from the server, other than to make
the server send the necessary JavaScript to the client...
 
Back
Top