Dear All, I have a form with multi submit buttons like this
<FORM NAME="form1" METHOD="POST" Action="SomePage.jsp">
        <INPUT TYPE="SUBMIT" NAME="submit" VALUE="Button 1">
        <INPUT TYPE="SUBMIT" NAME="submit" VALUE="Button 2">
        <INPUT TYPE="SUBMIT" NAME="submit" VALUE="Button 3">
    </FORM>
How can i get the submit value using JSP ?
 
     
    