Hi All, I have a page with multiple submit buttons. I am using LookupDispathAction. If I use <html:submit> button, then everything is working fine. Look at code1 below, which works fine. But, my application requires to use images instead of standard submit button for submitting the form. So, if i use the code2 below, it does not work. I get this error "javax.servlet.ServletException: Request[/submitInvoice] does not contain handler parameter named 'method'. This may be caused by whitespace in the label text. "
I will appreciate any help on this. ---code1----------- <html:submit property="method"> <bean:message key="button.add"/> </html:submit> <html:submit property="method"> <bean:message key="button.cont"/> </html:submit> --code2----- <html:image src="/images/add.gif" property="method"> <bean:message key="button.add"/> </html:image> <html:image src="/images/continue.gif" property="method"> <bean:message key="button.cont"/> </html:image> Thanks Vinod __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]