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?
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!
}
Only the clicked button will be a successful control.
<input type="submit" name="action" value="Something">
<input type="submit" name="action" value="Something Else">
Then, server side, check the value of the action data.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With