How to call a webform in vb.net using (asp.net)

I am a beginner ASP.Net. Can you please explain how to call a new page from an existing page. In VB.net, executing the "Form2.show ()" statement will load a new page. Exactly how to load a new page in ASP.Net?

+2


source to share


2 answers


Server.Transfer ( "NewPage.aspx" );

      



Server.Transfer Method

+1


source


Try

Response.Redirect("yourpage.aspx")

      



From MSDN: Response.Redirect Method

0


source







All Articles