Server.Transfer and Response.Redirect

* Server.Transfer transfers page processing from one page directly
to next page without making a round-trip back to the client’s
browser.
* Response.Redirect is used to redirect the user’s browser to
another page or site.

* Server.Transfer a faster response with a little less overhead on
the server.
* Response.Redirect perform as a trip back to the client where
the client’s browser is redirected to the new page.

* Server.Transfer does not update the clients url history list or
current url.
* Response.Redirect updates to reflect the new address.


No comments: