I am trying to print the size of list with the following code in
jsp <%
List ll = new ArrayList();
ll.add("India");
ll.add("Pakistan");
%>
<c

ut value="${fn:length(ll)}" />
but I am not able to do so.
The tablib I have included in jsp is
<%@ taglib uri='http://java.sun.com/jstl/functions' prefix='fn' %>
but error 'broken link' comes
I have included standard.jar in classpath
could anyone suggest to me what is the solution to this problem.
Thanks in advance