Please enable Javascript to correctly display the contents on Dot Net Tricks!
 
Become an Expert in C#, .NET, MVC, JAVA, PHP, AngularJS, Hadoop, Android, iphone, Testing etc.
by Joining our Training Programs and Take Your Career to the Next Level! To know more make a call on +91 98 71 749695

Difference between Response.Redirect and Server.Transfer

Posted By : Shailendra Chauhan, 28 Dec 2012
Updated On : 29 Dec 2012
Total Views : 99,869   
Version Support : All
 
Keywords : Difference between Response.Redirect and Server.Transfer, Response.Redirect and Server.Transfer, response.redirect, server.transfer

In ASP.Net Technology both "Server" and "Response" are objects of ASP.Net. Server.Transfer and Response.Redirect both are used to transfer a user from one page to another. But there is some remarkable differences between both the objects which are as follow.

Response.Redirect

  1. 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.

  2. It redirects the request to some plain HTML pages on our server or to some other web server.

  3. It causes additional roundtrips to the server on each request.

  4. It doesn’t preserve Query String and Form Variables from the original request.

  5. It enables to see the new redirected URL where it is redirected in the browser (and be able to bookmark it if it’s necessary).

  6. Response. Redirect simply sends a message down to the (HTTP 302) browser.

Server.Transfer

  1. 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.

  2. It transfers current page request to another .aspx page on the same server.

  3. It preserves server resources and avoids the unnecessary roundtrips to the server.

  4. It preserves Query String and Form Variables (optionally).

  5. It doesn’t show the real URL where it redirects the request in the users Web Browser.

  6. Server.Transfer happens without the browser knowing anything, the browser request a page, but the server returns the content of another.

What do you think?

In this article I have tried to explain the difference between Response.Redirect and Server.Transfer also I explain some scenario when and where we should use each one. i hope the article will be helpful for you. Comments and criticize will be welcome.

 
Further Reading
 
About the Author
Hey! I'm Shailendra Chauhan full-time author, consultant & trainer. I have more than 6 years of hand over Microsoft .NET technologies and other web technologies like JavaScript, AngularJS, NodeJS etc. I am an entrepreneur, the founder & chief editor of www.dotnet-tricks.com and www.dotnettricks.com. I am author of most popular e-books for technical Interview on ASP.NET MVC Interview Questions and Answers & AngularJS Interview Questions and Answers & LINQ Interview Questions and Answers.
I have delivered 100+ training sessions to professional world-wide over Microsoft .NET technologies such C#, ASP.NET MVC, WCF, Entity Framework and other mobile technologies such Ionic, PhoneGap, Corodva. Read more...
 
Free Interview Books
 
SUBSCRIBE & FOLLOW US
 
Browse By Category
 
 
Like us on Facebook