What is the difference between Get and Post Method?
Answer Posted / alok kumar ranjan
Re: What is the difference between Get and Post Method?
Answer: (1). Get is Default Http Method, but in post method
you should specify the post method implicitely as follows:-
<form action=" " method="post"
(2) In Get Method,data is pssed in URL Pattern. But in post
method data is passed with in method body.
(3) In Get Method,Size of URL is limited because of this e
can send only limited amount of data to server using the
get method. But in Post Method,We can send the data
unlimited amount of the data.
(4) Get Method is not secured because data can be seen in
URL. But Post Method is very Secured.
(5) Through Get Method,We can not send data to server But
In POst Method,We send the data to server
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Write a hello world program using servlets.
Which method of the httpservletrequest object is used?
What are the steps that are involved in using the httpservlet class?
What are the difference between RMI and Servlets?
What is servlet in tomcat?
Write all the phases defined in servlet life cycle?
What are the different mode that servlets can be used?
How can the referrer and the target urls be used in servlet?
What do you mean by cgi and what are its drawbacks?
What is new in ServletRequest interface ? (Servlet 2.4)
what do you understand by url rewriting?
What is servlet container?
What is the GenericServlet class?
When a client request is sent to the servlet container, how does the container choose which servlet to invoke?
What are the phases of the servlet life cycle?