Different Taglibs and its Usuage in JSP:
1.Core:http://java.sun.com/jsp/jstl/core
This Taglibs is used for Looping,Variable Support,Flow control,URL Management and miscellaneous
<%@taglib uri=”http://java.sun.com/jsp/jstl/core” prefix=”c”%>
2.XML:http://java.sun.com/jsp/jstl/xml
This Taglibs is Used for Core,Flow Control and Transformation
<%@taglib uri=”http://java.sun.com/jsp/jstl/xml” prefix=”xl”%>
3.Internationalization:http://java.sun.com/jsp/jstl/fmt
This Taglibs is Used For Locale, Message formatting and Number & date formatting
<%@taglib uri=”http://java.sun.com/jsp/jstl/fmt” prefix=”fmt”%>
4.SQL:http://java.sun.com/jsp/jstl/sql
This Taglibs is Used For Sql Query Purpose
<%@ taglib uri=”http://java.sun.com/jsp/jstl/sql” prefix=”sql”%>
5.Functions:http://java.sun.com/jsp/jstl/functions
This Taglibs is Used For Collection length and String manipulation
<%@ taglib uri=”http://java.sun.com/jsp/jstl/functions” prefix=”fn”%>
Popularity: 1% [?]
Related posts:

November 8th, 2008
admin
Posted in 
