What is the difference between Server.Transfer and
Response.Redirect?
Answer Posted / kishore maddineni
1) Response.redirect() is used to navigate between with in
one application, where as server.transfer() is used to
navigate between applications.
2)in Response.redirect() URL is updated, where as in
server.transfer() URL is not updated.
3)in Response.redirect() occured two round trips to the
server, where as in server.transfer() occured only only
round trip.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain me difference between public and static modifiers?
What is immutability?
What is misl?
What is machine.config in .net?
What is managed code in .NET?
What is the difference between constants and read-only variables?
What makes .net core cross platform?
What is .net debug & trace?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it.
What is equivalent for regsvr32 exe in .net ?
What is .net core used for?
What do you mean by web service?
How anonymous method is different from a lambda expression?
Usually in .net, the clr takes care of memory management. Is there any need for a programmer to explicitly release memory and resources? If yes, why and how?
Do you know what are three common acronyms used in .net, and what do they stand for?