I read all the posts regarding this error but for some reason it does not work for me...
Here is my folder structure,
I get the error as mentioned in my title,
The code of the if_tag.jsp,
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title><c:if> Tag Example</title>
</head>
<body>
<c:set var="salary" scope="session" value="${2000*2}"/>
<c:if test="${salary > 2000}">
<p>My salary is: <c:out value="${salary}"/><p>
</c:if>
</body>
</html>
The jstl libraries are located in -
C:\tomcat\webapps\ROOT\WEB-INF\lib