Hi Everyone,
Can any explain about HTTP methods with small example and I am not able to understand
about HTTP GET and HTTP POST topics in asp.net.Please explain it.
Thanks,
M.Maheswar
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Nov 30, 2011, 6:25 AM
Hi Maheswar,
There are two main ways to transfer information from page to page.
Get and Post are methods used to send data to the server:With the Get method, the browser appends the data onto the URL. With the Post method, the data is sent as "standard input."
Use GET:
- during development for debugging purposes (although in ASP.NET it's
also easy to see what has been sent through POST).
- if you want your visitors to be able to bookmark the submitted pages
- if you want to refer to submitted pages using hyperlinks
Use POST:
- for forms with password fields
- for large forms or forms with large text fields
Thanks
Pravin MorePosted Nov 30, 2011, 5:46 AM
go through below article....
http://www.c-sharpcorner.com/uploadfile/puranindia/the-http-client-methods-get-and-post/
Thanks,
Pravin.