views:

614

answers:

3

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 ?

+1  A: 
Server.Transfer ( "NewPage.aspx" );

Server.Transfer Method

rahul
A: 

Try

Response.Redirect("yourpage.aspx")

From MSDN: Response.Redirect Method

Jakob Gade
A: 

Thanks a lot

it really helped me

:)

nilmini nisansala