In the input item on the Html side When id and value are set as follows,
<input type="hidden" name="param1" value="1" />
On the Java side, if you write as follows, the value will be set in the variable `pamam'.
String param = request.getParameter("param1");
Recommended Posts