Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Why "equal symbol expected"?

843840May 11 2010 — edited May 11 2010
Here is the code. I am totally lost. Why it complains the equal sign? It is there, isn't?

"org.apache.jasper.JasperException: /WEB-INF/views/shop/admin/imageManagement/content.jsp(18,76) equal symbol expected"
<select name="<c:out value="${image.id}"/>">
	<c:forEach var="s" items="${suq}">
 		<c:if test="${image.sequence == s}">                       <---- this line
			<option value="<c:out value="${s}"/>"><c:out value="${s}" checked/></option> 
		</c:if>
		<c:if test="${image.sequence != s}"> 
			<option value="<c:out value="${s}"/>"><c:out value="${s}"/></option> 
	 	</c:if> 
	</c:forEach>
</select>
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 8 2010
Added on May 11 2010
4 comments
2,768 views