HTML Forms using the Get Method for sending data to a Servlet
The purpose of this assignment was to:
- Learn how to send data from the client-side with HTML forms using the GET-method, and learn how to handle that data on the server-side.
What is the GET-method
View this section in the Links, GET-method Servlet -assignment:
What is the GET-method and when is it used?
Assignment Description
Create a HTML document with a HTML form with different components. The components should have name parameters and values for these parameters.
The value of the form's action attribute should be an URL to a servlet.
Create the servlet that retreives the form data and sends it back to the client when the form is submitted.
