How to find out which HTML button was pushed in my servlet?
button, html, java, jsp
Solution
Read the answers to this question.
So, in
String button1 = request.getParameter("button1");
String button2 = request.getParameter("button2");
the value which isn't null is the pressed button.
Or, if you want to use the same name for the two buttons you can set a different value
<input type="submit" name="act" value="delete"/>
<input type="submit" name="act" value="update"/>
Then
String act = request.getParameter("act");
if (act == null) {
//no button has been selected
} else if (act.equals("delete")) {
//delete button was pressed
} else if (act.equals("update")) {
//update button was pressed
} else {
//someone has altered the HTML and sent a different value!
}
Problem
I am creating a registration form which contains two submit buttons. I need to know which button is clicked in the form in my servlet code?