Hi
I have create a
jsp page with 2 submit buttons: here is the code.
<s:submit type = "button" label="Add Club" name =
"submit" value= "addClub">
</s:submit>
<s:submit type = "button" label="Search" name =
"submit" value = "searchClub">
</s:submit>
Now in firefox, if the Add Club button is pressed, the property submit in my action is correctly set to addClub.
However, in IE if the Add Club button is pressed, the value of submit is "addClub, searchClub".
Is there any way around this problem. I know that I could use 2 separate properties for the buttons.