i have created jsp file with three submit
buttons pointing to one servlet
,when i try to get the caption value as a request parameter
in the servlet
it throws a NullPointerException
,the jsp
file is here:
<td>
<input type="submit" id="user" name="user_submit" value="search" class="searchUserbutton">
</td>
<div class="searchResultFrameButtonDiv">
<input type="submit" name="user_submit" id="addrole" value=">>" onClick="send_roles();" class="addDelsearchUserbutton"><br>
<input type="submit" name="user_submit" id="deleterole" value="<<" onClick="delete_roles();" class="addDelsearchUserbutton">
</div>
This is the code that throws NullPointerException
in my servlet
:
String caps=request.getParameter("user_submit");
System.out.println("the caps value is"+caps);// prints null
you are trying to get from submit button,use
request.getParameter()
to retrieve from text fields like<input type="text">
Also there is no form so submit button will not work