| Author |
Stale Value
|
AnirbanAgartala Bhattacharjee
Greenhorn
Joined: Mar 10, 2006
Posts: 4
|
|
I ve one jsp . And in this I have two submit buttons. If I code in a manner like this- <input type = "submit" name = "method" value ="<bean:message key ="button.name"/>"> <!-- [ button.name = name]--> </input> <input type = "submit" name = "method" value ="<bean:message key ="button.address"/>"><!--[button.address=address ]--> </input>. Then the two button labels are "name" nad "address". But if I code <html:submit property ="method"> <bean:message key="button.name">.. . Then I get the button labels as "name" and "name adress". Why this is happening.How this can be prevented?
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
Struts tags have a hard time dealing with two elements with the same property name. In this example, both buttons have a property name of "method". Since it seems to work fine using regular HTML tags, I'd suggest just using the regular HTML tags.
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: Stale Value
|
|
|