What is the difference between Server.Transfer and
Response.Redirect? Why would I choose one over the other?
Answer Posted / kumar saurabh
In earlier versions of IIS, if we wanted to send a user to a new Web page, the only option we had was Response.Redirect. While this method does accomplish our goal, it has several important drawbacks. The biggest problem is that this method causes each page to be treated as a separate transaction. Besides making it difficult to maintain your transactional integrity, Response.Redirect introduces some additional headaches. First, it prevents good encapsulation of code. Second, you lose access to all of the properties in the Request object. Sure, there are workarounds, but they're difficult. Finally, Response.Redirect necessitates a round trip to the client, which, on high-volume sites, causes scalability problems.
As you might suspect, Server.Transfer fixes all of these problems. It does this by performing the transfer on the server without requiring a roundtrip to the client.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the namespace classes used in asp.net mvc? : asp.net mvc
Why would anyone need to implement their own hashtable or linked list?
What are the new login controls in asp.net 2.0?
Explain about Automatic resource management?
What are the file extensions for razor views?
Explain About WebService
Explain how asp.net page works?
benefits of migration from asp to asp.net hi frnds, i have to give presentation to a client about how useful would be migrating their project from asp to asp.net .plz give me some points which i should incorporate in my ppt thanks
Explain the advantages of passport authentication.
In a Repeater control how one can provide an alternating color scheme ?
How many validators do ASP.NET have?
What is boxing and unboxing in asp.net?
How to use a Master Database in Asp.net?
i want to implement grid view value in paypal site. so how to create this code in asp.net with C#
Define xmlvalidatingreader class.