Explain the POST & GET Method or Explain the difference between them.

POST METHOD:
The POST method generates a FORM collection, which is sent as a HTTP request body. All the values typed in
the form will be stored in the FORM collection.
GET METHOD:
The GET method sends information by appending it to the URL (with a question mark) and stored as A Querystring collection. The Querystring collection is passed to the server as name/value pair.
The length of the URL should be less than 255 characters.

Showing Answers 1 - 14 of 14 Answers

Jignesh

  • Oct 17th, 2005
 

Get method passes the variable in the form of querystring Post methos passes the data in HTTP header so it can not be seen.

t.ramesh

  • Jul 22nd, 2006
 

Post : this method is pass the querystring vlalue on the browser

Get : This method is don't pass the querystring value on the browser

  Was this answer useful?  Yes

udayakumar

  • Jan 10th, 2007
 

post method transferring bulk data

get method transfering  limited data

  Was this answer useful?  Yes

lalita.p

  • Jun 7th, 2007
 


Ans:

Get: With the get method the value is send thru the querystring apppended with the url. so you can see the the Name value descriton on the addressbar when the page display in the browser.

Post: This method transfer the information thru the complete form. You can not see the detail descrption on the addresss bar. When the page display.

naveen

  • Oct 11th, 2007
 

getmethod uses the querystring to pass the data to the server so it appends data to the url so it is not secured one whereas post method differs from it it is passed to the server through the form collection

akshaya

  • Sep 24th, 2011
 

if there is a client and server performs an operation the server that GET the request from client. The client that POST or sends the request to the server.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions