What is the difference between Server.Transfer and
Response.Redirect? Why would you choose one over the other?
Answer Posted / ramesh
Server.Redirect:
response the page or return output without any request from
the client(Browser)
ex
Server.Redirect("Demo.aspx")
Disadvantage
it does not allow query String
Request.Redirect:
send the request(page) to server and processed it, finaly
redirect to corressponding page
Response.Redirect("Demo.aspx")
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What is asp.net globalization?
What are validator? Name the validation controls in asp.net?
Which method do you use to enforce garbage collection in .net?
What r the asp.net list controls and diff. Between them?
How are sessions stored?
What is state management in .net?
What is rending process in ASP.NET?
Explain about asp.net caching?
What is the difference between visual basic and asp.net?
Is asp.net mvc still used? : Asp.Net MVC
What is the use of web.config and machine.config files?
What is the postback property in asp.net?
What is state management react?
How can we prevent browser from caching an aspx page?
What is caching? What are different ways of caching in asp.net?