InterviewSolution
| 1. |
Explain The Post & Get Method Or Explain The Difference Between Them? |
|
Answer» 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 Query string collection. The Query string collection is passed to the server as name/value pair. The length of the URL should be less than 255 characters. 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 Query string collection. The Query string collection is passed to the server as name/value pair. The length of the URL should be less than 255 characters. |
|