What is the difference between response.redirect and
server.transfer, how to choose one among the other?
Answer Posted / praveen singh
Server.Transfer transfers page processing from one page
directly to the next page without making a round-trip back
to the client's browser. This provides a faster response
with a little less overhead on the server. Server.Transfer
does not update the clients url history list or current url.
Response.Redirect is used to redirect the user's browser to
another page or site. This performas a trip back to the
client where the client's browser is redirected to the new
page. The user's browser history list is updated to reflect
the new address.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What are the validation controls available in ASP.NET?
What is the best Macanism to clear the Cache in asp.net
What is asp.net ajax?
What is strong-typing versus weak-typing?
Why session is necessary in web application?
What is cross page posting? How is it done?
Mention few asp.net validators.
What is caching? Explain.
What is aspect-oriented programming?
How can you enable impersonation in the web.config file?
Which is the parent class of the ASP.NET server control?
What are the server controls in asp.net?
What are resource file and how do we generate resource file?
Explain the working of passport authentication.
What is a postback in asp net?