Why is this code not working????
<c:if test ="${sessionScope.qCounter == 0}">
<!-- {((Quiz1) (sessionScope.quizVal)).correctAnswer(sessionScope.boxval)) == 'true'}">!-->
<br><font size='3' color = 'red'>Your last answer was not correct!
Please try again!!</font><br>
</c:if>
qCounter and quizVal are a session scope attributes I declared like .
HttpSession s = request.getSession();
s.setAttribute("quiz", new Quiz1());
Quiz1 q = (Quiz1)s.getAttribute("quiz");
s.setAttribute("qCounter", "1");
request.setAttribute("quizVal", q);
please help :( why is my 'if' not doing anything?