I'm using C# webForms and need to open a new window that loads another .aspx page, HOW??

  • Thread starter Thread starter Bryan G
  • Start date Start date
B

Bryan G

I'm using C# webForms and need to open a new window that loads another .aspx
page, HOW??



Thanks,



BG
 
you will have to use a clientside call,
either an HREF with a TARGET or
a window.open() call. Beyond that you could use a FORM...TARGET tag as well
 
Back
Top