What is the difference between Server.Transfer and
Response.Redirect? Why would I choose one over the other?
Answer Posted / ish rastogi
server.transfer is provide faster redirect way for the web
page in comparable to the response.redirect beacuse in te
case of server.transfer ,the page is redirect (one page to
another page)directly from the server means no round
triping is used.but in the case of response.redirect
firstly the client(browser)send the page request to the
server and the server send the request to the page means
one round triping process is used.
in the server.transfer the page can be redirect from
first page to the second page(continuousally)but in
response.redirect the page can be redirect from first page
to any page.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
How does viewstate work?
Explain server side state management system.
What is the difference between cache and cookies?
What are the different types of Caching techniques in ASP.NET?
What is the Difference between MVC And MVP design pattrens
Explain the main function of url routing system in asp.net mvc? : asp.net mvc
What is Forms Authentication in ASP.NET?
Can you explain autopostback?
Describe the disadvantage of cookies.
Why we use asp.net for website development?
Name the tools or API for developing or testing web api?
What is asp.net web application?
What is the purpose of using MVC programming pattern in ASP.NET?
What is difference between inproc and outproc?
How can you display all validation messages in one control?