| Author |
html:form tag in struts-html.tld
|
sai prasanna
Ranch Hand
Joined: May 02, 2005
Posts: 167
|
|
hi all, if i need more than one form tag in a jsp it is recognized by its name while using struts-html.tld what is the attribute to specify the name of the form as it does not contain property attribute. thanks in advance saiprasanna
|
 |
ram gaurav
Ranch Hand
Joined: Mar 29, 2006
Posts: 208
|
|
In struts if you have more then 2 forms then you can use the following syntax to access different forms : document.forms[0].fieldname.value Try this !!!
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
When you use the <html:form> tag, action is the only required attribute. Struts looks up the action in the struts-config.xml file and uses the name you gave to the action as the name of the form when it renders the <form> tag. So, if you specify: <action path="/myAction" name="myForm" /> in your struts-config.xml file, and you specify: <html:form action="/myAction" > Struts will render this tag as: <form name="myForm" action="myAction.do" >
|
Merrill
Consultant, Sima Solutions
|
 |
sai prasanna
Ranch Hand
Joined: May 02, 2005
Posts: 167
|
|
|
thanks
|
 |
 |
|
|
subject: html:form tag in struts-html.tld
|
|
|