Thanks Ross. That worked.

<input type="Submit" Name="Submit" Value="Next" >
<input type="Submit" Name="Submit" Value="Save" >

Then on action page...

<c:out value = '${param.Submit}' />
displays "Next" or "Save"

Quoting "Ross, Douglas" <[EMAIL PROTECTED]>:

>> David,
>>
>> I believe the browser only sends the clicked submit button value. So the
>> trick (if you would call it that) is to name all your submit buttons the
>> same:
>>
>> <input type="submit" name="action" value="New">
>> <input type="submit" name="action" value="Edit">
>> <input type="submit" name="action" value="Delete">
>>
>> Whichever one the user clicks is the one sent to the server:
>>
>> request.getParameter("action")=="New" | "Edit" | "Delete";
>>
>> Hope this helps. Note: the img and the input type=image tags do not do
>> this!
>>
>> Doug
>>
>> -----Original Message-----
>> From: David Schwartz [mailto:[EMAIL PROTECTED]
>> Sent: Tuesday, September 07, 2004 9:54 AM
>> To: [EMAIL PROTECTED]
>> Subject: Submit Button
>>
>> Is it possible to determine the name or value of the submit button that
>> user
>> clicked?
>> For example, I have a form with 4 submit buttons - each with a dif name
>> & value.
>> Need to know which was clicked so user can be routed.
>>
>> David Schwartz
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>


David Schwartz
Array Software Inc.
http://www.arrayone.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to