How values can be passed from HTML page to servlet?
Answer Posted / satya
there are two ways in passing form data to a servlet
in case of the form using GET method
-------------------------------------
the form data is appended as a query string after the
end of the url in the address bar of the browser
in case of the form using POST method
--------------------------------------
the form data is added to the body part of the Http
protocol request body .this form data is called as payload
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Which interface must be implemented by all servlets?
What is servlet in web technology?
Whether we can get deadlock situation in servlets?
How to generate the server side programming and the advantages of it over the other languages?
What is servlet instance?
What are the common methods that are included in the http servlet class?
what is multiple server?
What is the difference between a generic servlet and http servlet?
What is the use of servlet wrapper classes?
How can I send user authentication information while making URL Connection?
Is tomcat a servlet container?
What is java servlet session?
How the servlet is loaded?
Explain how to improve Servlet Performance?
What is cookies in servlet with example?