I am trying to show only something based on the fact that the string is not equal:
<c:if test="${content.getContentType().getName() != "MCE"}"> <li><a href="#publish-history" id="publishHistoryTab">Publish History</a></li> </c:if>
It continues to throw an org.apache.jasper.JasperException: /WEB-INF/jsp/content/manage.jsp(14,60) PWC6212: equal symbol expected error org.apache.jasper.JasperException: /WEB-INF/jsp/content/manage.jsp(14,60) PWC6212: equal symbol expected
I also tried not eq instead !=
What is the valid syntax for not equal to ?
java jsp jstl
Webnet Aug 27 2018-12-12T00: 00Z
source share