Monday, January 20, 2014

Difference between Server.Transfer and Response.Redirect

Server.Transfer transfer page processing from one page to another page directory to the next page without making a round trip back to the client browser.This provides a faster response with a little less overhead on the server.Server.Transfer does not update the url.

Response.Redirect is used to redirect the user browser to another page or website.This performs a tripback to the client where client browser redirected to the new page.The user browser url is updated to reflect the new address.

0 comments:

Post a Comment