I am doing a tiles insert in a jsp page as follows.
<tiles:insert name=".test" > <tiles ut name="bean" beanName="myValidatorForm" /> </tiles:insert>
The actual page (.test) has the following code <tiles:importAttribute name="bean" /> <logic resent scope="request" name="[...]ValidatorForm" > However the above doesnt work but this does. <logic resent scope="request" name="myValidatorForm" >
What does name="[...]ValidatorForm" signify? I came across this in code by another person. I am new to struts and tiles. :-)