VB.Net Webforms

  • Thread starter Thread starter Lee
  • Start date Start date
L

Lee

Ok simple question here,

How do I call one webform from another webform? Such as when the user clicks
on a link or button

Thanks

Lee
 
Lee said:
Ok simple question here,

How do I call one webform from another webform? Such as when the user clicks
on a link or button

Thanks

Lee
I assume you mean navigate to as opposed to call (or instantiate the
class)....Response.Redirect or Server.Transfer, the former is better to
use in my opinion.
 
Back
Top