What is the difference between response.redirect and
server.transfer, how to choose one among the other?

Answers were Sorted based on User's Feedback



What is the difference between response.redirect and server.transfer, how to choose one among the o..

Answer / richa

Server.transfer transfer the page processing from one page
to another page without making a round trip back to the
client where as response.redirect redirect to another URL
and it make a round trip back to the client.

Response.Redirect can be used to redirect to external web
sites where as the Server.Transfer can be used only to
transfer to other pages of the same web site.

Is This Answer Correct ?    19 Yes 1 No

What is the difference between response.redirect and server.transfer, how to choose one among the o..

Answer / 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

What is the difference between response.redirect and server.transfer, how to choose one among the o..

Answer / chigicherla mallikarjuna

Server.Transfer
--------------------------------------------------------
Server.Transfer Can move one page to Another page if that
page is in same website.

if Default.aspx, Default2.aspx Are in the same Website
then we can:

Server.Transfer("Default2.aspx");
//By this we can navigate to Default2.aspx

Without changing the Url:
http://localhost:4758/WebSite2/Default.aspx

But if we write:

Server.Transfer("http://www.google.com")
it cannot navigate to That requeste page

where as
Response.Redirect Can navigate to Other pages

Response.Redirect("Default2.aspx")

Response.Redirect("http://www.google.com")

Is This Answer Correct ?    5 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

How can i explain my project during interview?many time i expalain my project but they did't accept? please explain me.

0 Answers   Honeywell, Wipro,


From which base class all web forms are inherited?

0 Answers  


What is binding in web service ?

1 Answers   TCS,


Which tab of the web site administration tool do you use to manage application setting ,debug and tracing?

2 Answers  


What's a bubbled event?

3 Answers   Siebel,






How many types of validation are there?

0 Answers  


What does the "EnableViewState" property do? Why would I want it on or off?

4 Answers  


Explain about Application and Session Events ?

0 Answers  


What is the main difference between Asp.net and Vb.net?

0 Answers  


What are asp.net web forms?

0 Answers  


Write some code using interfaces, virtual methods, and an abstract class`

0 Answers  


How you will handle session when deploying application in more than a server?

0 Answers  


Categories