> how can i add the test value to the html:text like below
 
> <bean:define id="test" name="testForm" 
> property="testers.testerName"/>       
> <html:text name="username" value='<bean:write name="test"/>'/>

You can't nest tags, but you can use the "el" version of the Struts html
tags:

<html-el:text name="username" value="${testForm.testers.testerName}"/>


--
Tim Slattery
[EMAIL PROTECTED]


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

Reply via email to