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?
Server.Transfer ( "NewPage.aspx" );
Server.Transfer Method
Try
Response.Redirect("yourpage.aspx")
From MSDN: Response.Redirect Method