Hey How to use loop in tag in jsp page?
i want to use JSTL data to pass in data tables
my code is like :
$(document).ready
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
YOUR CODE
NAME
This would produce following result:
NAME 1
NAME 2
NAME 3
NAME 4
NAME 5
Above is simplest example.. following is with items var
${student.name}
${student.age}
${student.height}
this way you can use the
TAG..
If you have any specific problem then please explain