vote up 2 vote down star

I am beginer to ASP.Net. Can u tell how to call new page from the existing page. In VB.net by executing the statement "Form2.show()", New page will be loaded. In the same way how to load new page in ASP.Net ?

flag

0% accept rate

2 Answers

vote up 1 vote down
Server.Transfer ( "NewPage.aspx" );

Server.Transfer Method

link|flag
vote up 0 vote down

Try

Response.Redirect("yourpage.aspx")

From MSDN: Response.Redirect Method

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.