can anyone please help me figure out why the spring tag is not recognized though i have included this <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %> ?Code:<form:form> <table id="tableId" align="center"> <tr> <c:forEach items="${menulist}" var="emp" varStatus="status" begin="0" step="1"> <td>${emp.name}</td> </c:forEach> </tr> <tr> <c:forEach items="${addSaleForm.items}" var="i" varStatus="itemsRow"> <td> <spring:bind path="addSaleForm.items[${itemsRow.index}]"> <input type="text" name="name" value="0"/> </spring:bind> </td> </c:forEach> </tr> </table> <br/> <center><input id="add" type="submit" value="ADD" /></center> </form:form>


Reply With Quote
