when am using ${fn:contains()}"
it causes the following exception:
org.apache.taglibs.standard.lang.jstl.parser.ParseException: EL functions are not supported
How can i solve this exception?
and if I need to download a newer version of jstl.jar & standard.jar could any one send me a link?
Thanks in advance.
<c:if test = "${fn:contains()}">...</c:if>
inside<c:forEach
. Is there another way to do the same functionality offn:contains()
– Iscariot