Emmanuel.Leguy wrote:
Hello,

I use the following code in a jsp:

<logic:present name="person">
        <html:text property="name" " value='<%= person.getName() %>'/>
</logic:present>

If 'person' is not present <%= person.getName() %> is compiled and I get this error: membreLIFL cannot be resolved

If i use this code:

<logic:present name="person">
<input type="text" name="name" value="<bean:write name="person" property="name"/>"/>
</logic:present>

No problem.

How can i use the html:text tag?

Did you try this?

    <logic:present name="person">
        <html:text name="person" property="name"/>
    </logic:present>

L.


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

Reply via email to