This creates a menu of 1 - 10
</html-el:select>
<html-el:option value="year">year</html-el:option>
<c:forEach begin="1" end="10" varStatus="status">
<html-el:option value="${status.count}">
<c:out value="${status.count}" />
</html-el:option>
</c:forEach>
</html-el:select>
This creates a menu of 1-11
</html-el:select>
<html-el:select property="startyear" size="1">
<c:forEach begin="10" end="20" varStatus="status">
<html-el:option value="${status.count}">
<c:out value="${status.count}" />
</html-el:option>
</c:forEach>
</html-el:select>
Why doesn't this create a menu of 10-20??
Barry