Hi,
I am writting an asp.net application using vb.net
How is it possible to go from page1 to page2(In a separate window)?
And how can I pass a value from this stand alone page2 to page1?
Thanks
Printable View
Hi,
I am writting an asp.net application using vb.net
How is it possible to go from page1 to page2(In a separate window)?
And how can I pass a value from this stand alone page2 to page1?
Thanks
Hi, I am not too sure if the session object transfers between browsers when you create a new instance of the browser (Open a new browser window). What I would do is pass the value through to the browser via the querystring.
Cheers
Mark
Hi,
How do you open a window in a new browser?
Thanks
basic html
add target="_blank" to your a href link
On clickiing a button can I use something like:
response.write("<a href= target=_blank></a>
Or can u point me to where to get some help for this topic pls?
Thanks
no. with a button you need to call a client side javascript function that does a window.open("yourlink")