Click here to Skip to main content
15,887,822 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
if we use server.transfer() then i am able to find the diff in url that if we use get method then forms data is appended to url in case post data is not visible in url.

in case of response.redirect() is there any change in using get and post methods.

tnx
karteek
Posted

1 solution

First try understanding HTTP redirects. When you use Response.Redirect(), you send a response to your browser that made the specified request By definition, the browser will make that via a GET request, even if the original request was a POST.

http://msdn.microsoft.com/en-us/library/ms524309%28v=vs.90%29.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900