David,
Yes, it's possible, but unfortunately Struts won't help
you much in this case like it does with "cancel" or
single "submit" buttons. (please correct me, if I'm wrong)
Perform method of Action takes HttpServletRequest object as request and
you can execute its getParameter() method to find out which
button was pushed.
Best of luck,
Yuriy Zubarev
--- DHarty <[EMAIL PROTECTED]> wrote at 21 Jun 08:43 :
> Is it possible to use multiple <html:submit/> buttons in the same form, and>
> provide a different action depending on which was hit?>
>
> ex:>
>
> <html:submit>Do something</html:submit>>
> <html:submit>Do Something Else</html:submit>>
> <html:submit>Do Yet Another Thing</html:submit>>
>
> I know you can check if the button is a cancel, but that only works if you>
> have two alternatives.>
>
> I'm looking for a way in the Action class to see which button was hit.>
>
> Thnxs>
> David>