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 exactly are the functions of servlet?
What are the functions of the servlet container?
What are the types of Session Tracking ?
What's the use of servletcontext?
Can servlet have a constructor ?
What is cookie in servlet?
What are the objects involved when a servlet receives a call from client?
What’s the difference between forward() and sendredirect() methods?
What are the ways to handle multi-threading in servlets?
What are the different methods of session management in servlets?
Explain the custom jsp tags and the beans.
How we can call a jsp from the servlet?
How can we create deadlock situation in servlet?
How is the get () method different from the post() method?
Difference between GET and POST?