what is the difference between doGet() and doPost()?
Answer Posted / sharief
doGet() append the data to the link.
doPost() will not append the data to the link.
Efficiency is less for doPost() than doGet().Hence,doGet()
usage is more when compared to doPost().
only 255 characters are restricted for doGet(),where as
doPost() doesnt have any restrictions.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the different methods involved in the process of session management in servlets?
What are the new features added to servlet 2.5?
How to get the actual path of servlet in server?
Why doesn’t a servlet include main()?
Whether we can get deadlock situation in servlets?
How can the session in servlet be destroyed?
How can you push data from an Applet to a Servlet?
What is war file?
What do you mean by web applications? Explain web application directory arrangement?
What is the difference between servlet and jsp?
Explain session tracking and its importance?
How do you define a servlet?
What are all the protocols supported by httpservlet?
What do you mean by annotations in servlet?
Describe in brief RequestDespatcher?