Web page

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

Guest

How can I open a new web page in VB ASP.NET? I want the new page to appear
in front of the existing page.

TIA
 
Hi Helen,

You can open a new page by using simple javascript functions
'window.open' or 'window.showModalDialog'. If you want to call this functions
from your code behind use 'RegisterClientScriptBlock'.

Hope this will help you.

-Ravi
 
Back
Top