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
Write a program to show the functionality of servlets.
Why do we have servlet wrapper classes?
What is httpservlet and how it is different from genericservlet?
How printwriter is different from servletoutputstream?
What is the use of servlet wrapper classes?
How would you create deadlock on your servlet?
Differentiate between get and post?
What is servlet and list its types?
How servlet is created?
Why servlet is faster than jsp?
What are the important functions of filters?
What's the advantages using servlets than using cgi?
What are different ways for servlet authentication?
What is the web server used for running the Servlets?
How we can create war file in servlet?