Stanislav wrote:

[snipped...]

<html:text size="54" property="imeK" styleClass="InputTable" value='<bean:write name="imeK" 
scope="request"/>'/>

You can't embed tags within tags... Try something like:

<bean:define id="value" name="imeK" scope="request" />
<html:text size="54" property="imeK" styleClass="InputTable" 
value="<%=value.toString()%>" />

Alternatively, use an action to populate the form bean.

Cheers,

--
Bob Arnott


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

Reply via email to