2

I am a beginner to ASP.NET. Can you tell me how to call a new page from the existing page?

In VB.NET, by executing the statement "Form2.show()", a new page will be loaded. In the same way, how do I load a new page in ASP.NET?

2 Answers 2

1
Server.Transfer ( "NewPage.aspx" );

Server.Transfer Method

Sign up to request clarification or add additional context in comments.

Comments

0

Try

Response.Redirect("yourpage.aspx")

From MSDN: Response.Redirect Method

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.