Is possible to open a new webform on top of the first webform?

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

Guest

Hi. Im new in C# and I'm migrating a few Win Applications to Web
Applications. So far the only commands I know to navigate between webforms
are Server.Tranfer and Response.Redirect. Is there any instruction to open a
new webform on top of another?

Thanks!

Raul
 
Raul,

In order to do this, you would have to send script back to the client
which would call the open method on the intrinsic window object in
JavaScript. You would make it open a URL which you want displayed in the
new window.

Hope this helps.
 
Back
Top