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
Explain the difference between servlet and cgi?
What is the difference between servlet and filter?
What is lazy loading and what is Generic Servlet Class?
What do you mean by filter in servlet?
How would you create deadlock on your servlet?
How do we translate jsp?
What must be implemented by all servlets?
Explain the different ways for servlet authentication?
Explain how does JSP handle run-time exceptions?
What is the disadvantage of cookies?
What are session variable in servlets?
List out the difference between ServletConfig and ServletContext?
What is cookie in servlet?
What do you mean by scope object and what are its types?
What is session tracking?