> I replaced: > > int totalPosts = ( ( Integer )request.getAttribute( > "TotalPosts" ) ).intValue(); > with > <c:set var="totalPosts" > value="${requestScope.TotalPosts}" /> > > And I replaced: > > <%=totalPosts%> > with > <c:out value="${requestScope.totalPosts}" /> >
You are missing the taglib uri for c.tld (included with standard taglibs [for Tomcat 4 use standard-1.0 for Tomcat 5 use standard-1.0 or standard-1.1]): <!-- Change to match your deployment descriptor --> <%@ taglib uri="/WEB-INF/c.tld" prefix="c" %> If this continues not to work, try <c:out value='${request.TotalPosts}'/> Regards, Pedro Salgado --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]