I have a Struts 1.2 based Web App which uses lot of scriptlet code in the JSP page, I wish to clean up the code by using JSTL.The Servlet Specification Level: 2.3 and JSP Specification Level: 1.2. I am using WSAD 5.1.
I tried using <c:if></c:if>
tag, but I get the following error on building the project.
"JSP Translate: unable to load if tag"
I have included the taglibs element for this tag library and also the TLD file in the appropriate folder.
I guess the container is not able to locate the tag handler.
It would be great if someone could share their thoughts on this.