Number of navigation techniques in Asp.Net, Response.Redirect(); Server.Transfer(); Cross Page Postback Hyperlinks
Server.Transfer() , Request.Redirect
Response.Redirect - move from one web form to another on same or different server. Server.Transfer- move from one web form to another on same server without changing URL.Server.Exceute - It is very similar to the server.transfer method for navigation but it retains the control from the source web page and returns to the original page after execution of the target page.Cross page posting - allows a web form to post on another web form on button click. The PostbackUrl property of the button is set to the page where you want to do cross-page posting
''