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 can you run a servlet program?
What is the difference between CGI and Servlet?
What is a servlet-to-servlet communcation?
What's the servlet interface?
Define the life cycle of a servlets.
What is servlet? Explain
Who is responsible to create the object of servlet?
What are different Authentication options available in Servlets.
Why is Servlet so popular?
What do you mean by session tracking and also explain its techniques?
Can a jsp be called using a servlet?
What are the advantages of Servlet over CGI?
What is meant by servlet? What are the parameters of the service method?
When using servlets to build the HTML, you build a DOCTYPE line, why do you do that?
How to get the server information in a servlet?