Example code (pure JSP/Java):
int i = 0;
for (i=0 ; i < 10 ; i++){
out.println(i);
}
How I do this using JSTL?
I know the TAG <forEach> but I am a little confused with the JSTL variables.
http://www.experts-exchange.com/Programming/Languages/Java/Q_20477160.html
Hi all,
I have a problem on this new technology, JSP Standard Tag Library (JSTL).
Previously I am in the middle on learning this Java technology, I have experience in HTML, JSP and all the begi...
http://www.experts-exchange.com/Programming/Languages/Java/J2EE/JSP/Q_20598558.html
hi,expers,
i download the jstl in http://www.apache.org/dist/jakarta/taglibs/standard/binaries/jakarta-taglibs-standard-1.1.0.zip , and copy jstl.jar ,standard.jar to my webapplication \WEB-INF\...
http://www.experts-exchange.com/Programming/Languages/Java/J2EE/JSP/Q_21061862.html
hi,experts,i want use jstl in resin2.1.x,but it will show some error in my page.
test.jsp
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
<head>
<title></title>
</head>
...
http://www.experts-exchange.com/Programming/Languages/Java/J2EE/JSP/Q_21092363.html
I'm coming from a Coldfusion Background and was wondering if someone can point me in the right direction.
I've looked into java, JSP seems to be what I want to move to from Coldfusion, but Java ...
http://www.experts-exchange.com/Programming/Languages/Java/J2EE/JSP/Q_21325486.html
Hi,
Let say I have a link like
<a href="david.jsp?param=2">Go Please! </a>
Now, in my david.jsp, how can I get the param value using JSTL only. I know how to get it using scriptlet by reques...
http://www.experts-exchange.com/Programming/Languages/Java/Q_21429297.html
I'm thinking about using the JSTL library to display the results of my collection, but I'm unsure exactly how I can adapt it to my use. HEre is an example where I am using scriptlet, but think I wa...
http://www.experts-exchange.com/Programming/Languages/Java/J2EE/JSP/Q_21448003.html
Zones:
JSP,
JSTL / TagsDate Answered: 06/06/2005 Rating: 7.8 Views: 17
I'm using Tomcat 5.0.28 and jdk 1.5.
I want to transform an external xml source located at "http://www.conservatives.com/xmlgateway/xml/news/" with a stylesheet located on the server called ind...
http://www.experts-exchange.com/Programming/Languages/Java/J2EE/JSP/Q_21476540.html
Take the following JSTL code:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
<c:import var='xml' url='person...
http://www.experts-exchange.com/Programming/Languages/Java/J2EE/JSP/Q_21502977.html
I'm looking for a way to either do a regular expression using JSTL or just java (scriptlet). I need to check if a value contains the following ".swf"
so if the variable had test.swf , it would ...
http://www.experts-exchange.com/Programming/Languages/Java/J2EE/JSP/Q_21553948.html