In my JSP I have one form(action="myServlet", method='post', enctype='multipart/form-data') with 2 submit buttons.
I need to recognize which of those buttons was pressed in myServlet. If it's possible i would like to avoid using session...
Any ideas on how to do this?
EDIT: -------------------------------------------------------------------------
All the text below was added after the edit. The Strong text is also added with the edit.
Now i have 3 buttons instead of 2, I had to add a javascript function to each one of them(onclick), this function validates the fields before submitting so i had to modify the buttons and set type=button(they are not submit buttons anymore because with submit they would call the servlet always, even if the validation was false).
The method i was using to recognize which of the submit buttons was clicked (in the servlet) was iterating over all the FileItem(s) sent with the request and if the name of any of them was the name of any of the 3 buttons in my form, then that button was the one the user clicked. This worked perfectly when the buttons had type=submit, but now that they are simple buttons apparently they are not sent with the request, so when i get the FileItems in the servlet none of them is any of the buttons... so the trick i was using before is useless now.
I have no idea on how to do this without doing weird things like for example: adding an invisible text field in the form that is filled with the name of the button i click(using javascript)... Any better ideas?