What is the difference between Server.Transfer and
Response.Redirect? Why would I choose one over the other?
Answers were Sorted based on User's Feedback
Answer / raghumadhav tirunagari
server.Trnasfer will prevent round trip. it will redirect
pages which or in the same directory. NO way to pass the
query strings . Thru http context we can able to get the
previous page control values.
Response.Redirect : There is a round trip to process the
request. We can redirect to any page external / internal
other than aspx. We can pass the query string thru which we
can manage sessions.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / manjunath
1)response.redirect sends the message to the browser to
send to different pages while server.transfer will not send
the message rather redirect user directly to some differnt
page.
so there is no round trip in server.transfer but
response.redirect has the round trip puttind load on the
server.
2)server.transfer will not redirect to the different server
while response.redirect can redirect to any different
server.
3)server.transfer can store data using paramater
called "preserved form" , this query strings are available
in the next calling pages.In latter it is not possible.
| Is This Answer Correct ? | 1 Yes | 1 No |
Explain <mobile:link> element .net mobile with example? : Microsoft dot net mobile
Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?
what is the difference between running an application with and without debugger?
What is parallel computing?
What is a virtual memory? : .NET Architecture
Which software is used for .net programming?
What is the problem with .net generics?
IS IT Possible to inherit the AJAX page from child class which(child) is inherit from page class.Because i should apply some security in child class
Explain the difference between l1 and l2 cache? : .NET Architecture
which of the following statement is true about gac. a)it is being handled by .net framwork b)It is special folder c)it can have files with same name etc etc.
Wcf- What is ABC
What is different about namespace declaration when comparing that to package declaration in java?