1
Reply

What is the difference between Response.Redirect() and Server.Transfer()?

Vasanth Natarajan

Vasanth Natarajan

Jun 13, 2016
184
0

    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.

    Vasanth Natarajan
    June 13, 2016
    0