cujigar1
Aug 28th, 2005, 03:37 AM
<spring:bind path="command.password">
<input type="text" name="<c:out value="${status.expression}"/>"
value="<c:out value="${status.value}"/>"/>
</spring:bind>
when they can directly and easily use EL
<spring:bind path="command.emailAddress">
<input type="text" name="${status.expression}/>"
value="${status.value}"/>
</spring:bind>
note: i m referring to unnecessary usage of c:out tag
i just want to know that does using c:out has any advantage because all the examples in this world use it.
<input type="text" name="<c:out value="${status.expression}"/>"
value="<c:out value="${status.value}"/>"/>
</spring:bind>
when they can directly and easily use EL
<spring:bind path="command.emailAddress">
<input type="text" name="${status.expression}/>"
value="${status.value}"/>
</spring:bind>
note: i m referring to unnecessary usage of c:out tag
i just want to know that does using c:out has any advantage because all the examples in this world use it.