Basic Servlet
* Title of the Servlet : HelloUser.java
* Purpose of the Servlet :
*
* This Sample demonstrates Parameter processing using Servlets and a simple HTML
* form.
*
* After invoking the application, the servlet sample displays a HTML form.
* User can enter his/her name in the User Name text field. Upon pressing the Button
* "Submit Form", the form gets submitted.
*
* The Servlet uses getParameter("USERNAME") method to read the input parameter,
* "USERNAME" submitted by the previous form. Then the "USERNAME" is displayed
* on the HTML page.
*
Click the link to get the Source code of the HelloUser Servlet. Note that it is the
basic servlet.
|