Explain the difference between GET and POST methods?
Answer Posted / karishma
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.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between get and post methods?
Is servlet a framework?
What are the two important api's in for servlets?
What are all the ways for session tracking?
Name the packages that work with servlet?
What is difference between jsp and servlet?
What are the advantages of Servlet over CGI?
why we should override only no-agrs init() method.
What is servlet container. how it works?
How we can get ip address of client in servlet?
How can we refresh automatically when new data is entered into the database?
What do you mean by a filter and how does it work?
How to get ip address in jsp login page and how to validate like 127.1.0.1 all should not be greater than 255
What do you mean by httpservlet and how it is different from the genericservlet?
How do you define a servlet?