Read HTML Form Data in 3 Styles with Servlets

One of the activities of a Servlet Developer is to read HTML form data sent by the client by clicking over Submit button. The data sent by the client lands finally in ServletRequest/HttpServletRequest object passed as parameter to service() method. To retrieve the data from ServletRequest object, the ServletRequest interface comes with three methods mostly …

Read HTML Form Data in 3 Styles with Servlets Read More »