Just a quick question.
I have a formBackinObject that populates a variable ie pCount
In my JSP I have a <form:hidden path="pCount"> that gets properly populated and generates proper HTML
which is exactly what I set it to in the formBackingObject.Code:<input id="pCount" name="pCount" type="hidden" value="2"/>
However, later in the JSP I try to retrieve pCount value with
but that returns an empty string.Code:<c:out value="${pCount}"/>
How do I get the number in pCount?


Reply With Quote
