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
Which protocol is used to call web service?
What is state management techniques in asp.net?
What are the Difference between asp.net and asp ?
What is web api config?
What is the difference between file-based dependency and key-based dependency?
How do u deploy ur project?
How can I have a particular web page in an asp.net application which displays its own error page?
What parameters can you pass in the url of the api?
How do we assign page-specific attributes?
Explain about the .NET framework?
Define web services in asp.net.
How can I create master page in asp net?
What is the usage of DelegatingHandler?
Explain asp.net web forms.
What are the different ways you would consider sending data across pages in ASP (i.e between asp to asp)?