Hi there,
Can <spring:bind> tag work with JSP label instead of input type=text. E.g:

<TD>
<spring:bind path="FlightInfoBean.destination"/>
<label id="startStation"> <%=rs.getString(2)%>
</label>
</TD>

rs is resultset from database query. There is a value in "rs.getString(2)" and I like to bind that value to FlightInfoBean's desitnation. Am I implementing the wrong way?
Many thanks.