JSTL (JSP Standard Tag Library) The JSP Standard Tag Library (JSTL) represents a set of tags to simplify the JSP development. Advantage…
JSTL Tutorial
-
-
JSTL SQL Tags The JSTL sql tags provide SQL support. The url for the sql tags is http://java.sun.com/jsp/jstl/sql and prefix is sql.…
-
JSTL Core <c:catch> Tag It is used for Catches any Throwable exceptions that occurs in the body and optionally exposes it. In…
-
JSTL XML tags The JSTL XML tags are used for providing a JSP-centric way of manipulating and creating XML documents. The xml…
-
JSTL Core <c:choose>, <c:when>, <c:otherwise> Tag The < c:choose > tag is a conditional tag that establish a context for mutually exclusive…
-
JSTL Core <c:forEach> Tag The <c:for each > is an iteration tag used for repeating the nested body content for fixed number…
-
JSTL Core <c:forTokens> Tag The < c:forTokens > tag iterates over tokens which is separated by the supplied delimeters. It is used…
-
JSTL Core <c:if> Tag The < c:if > tag is used for testing the condition and it display the body content, if…
-
JSTL Core <c:import> Tag The <c:import> is similar to jsp ‘include’, with an additional feature of including the content of any resource…
-
JSTL Core <c:out> Tag The <c:out> tag is similar to JSP expression tag, but it can only be used with expression. It…