<input type='hidden'> is HTML markup. See the
HTML Tutorial and References at w3schools.com (or any other good HTML reference) for more infomation. Basically hidden input fields are used to send parameters with a request (such as for a form) that the user does not
directly set or change, like they would with a textbox of checkbox.
You can refrence the API for javax.servlet.http.HttpServletRequest for details on how to access the value in your JSP/Servlet but basically, in JSP:
input.jsp
then in the JSP that processes the page:
The variable request is an implicit instance of javax.servlet.http.HttpServletRequest in JSP's
HTH