What is the difference between Response.Redirect() and Server.Transfer()?
Vasanth Natarajan
Response.Redirect() will send you to a new page, update the address bar and add it to the Browser History. On your browser you can click back.Server.Transfer() does not change the address bar, we cannot hit back.One should use Server.Transfer() when he/she doesn’t want the user to see where he is going. Sometime on a "loading" type page.