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
How do you get the ip address of the client in servlet?
Difference between get and post in java servlets?
How can the session in servlet can be destroyed?
What is servlet container?
What is java servlet session?
What is Servlet API used for connecting database?
What do you mean by session tracking?
What are the steps that are involved in using the httpservlet class?
Can servlet have a constructor ?
What is http servlet?
Explain request dispatcher and its methods.
What is the use of java servlet api?
What is called Session Tracking?
What is servlet and its use?
How printwriter is different from servletoutputstream?