Any ideas on what this below error is???
JSP Can't find resource for bundle java.util.PropertyResourceBundle, key el.convert i am getting this when using a jsp. Am i missing some thing??
<c:set var="count" value="0" scope="page" />
<c:forEach items="${usersList}" var="userNames" >
<c:set var="counter" value="${count + 1}" scope="page"/>
<li class="msImages">
<c:choose>
<c:when test="${counter lt '4'}">
<p> <span> I am creating an image</span>
</p>
</c:when>
<c:when test="${counter eq '4'}">
<span>See More </span>
</c:when>
</c:choose>
</li>
You’re using the same variable name
counttwice. Remove the<c:set var="count" value="0" scope="page" />. Also, you should use properties of thevarStatus, and not the value directly. It’s not a primitive object.