Java Server Page

JSP Projects

JSP Project

How Tag Library describe and used ?
Previous Home Next
adplus-dvertising

Place the tld files into WEB-INF/tlds folder

Configure  tag libraries in web.xml file

Since Tag Library used only into JSP Page/ file so its scope is limited.

Here syntax of tag libraries:-

<%@taglib uri="/WEB-INF/tlds/    .tld" prefix="tlt" %>

The uri attribute refers to a URI that uniquely identifies the tag library. This URI  can be relative or absolute.

Previous Home Next