On 7/6/05, Mick Knutson <[EMAIL PROTECTED]> wrote:
> I have the following that works almost fine:
> 
>                 <html:link forward="historicalTransactions"
>                     paramId="commonEnrollmentID"
>                     paramName="consumerValidatorForm"
>                     paramProperty="commonEnrollmentID"
>                 >
>                     <bean:message key="label.menu.historicalTrx" />
>                 </html:link>
> 
> 
> Then what I get is "http://URL?commonEnrollmentID=12345";
> 
> What I need to be generated is:
> "http://URL?action=historical&commonEnrollmentID=12345";
> 
> Because historical is an action method on my LookupDispatchAction that
> needs to be called when I click this link.

How about quick and dirty

                 <html:link page="URL?action=historical"
                     paramId="commonEnrollmentID"
                     paramName="consumerValidatorForm"
                     paramProperty="commonEnrollmentID"
                 >
                     <bean:message key="label.menu.historicalTrx" />
                 </html:link>

Michael.

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

Reply via email to