This section describes you about the various aspects of JSP tags such as what is JSP tag, list of JSP tags, JSP custom tags and many more things.
This section describes you about the various aspects of JSP tags such as what is JSP tag, list of JSP tags, JSP custom tags and many more things.In this section we will learn about the JSP tags.
This section describes you about the various aspects of JSP tags such as what is JSP tag, list of JSP tags, JSP custom tags and many more things.
What is JSP Tags ?
Tags in JSP are like the HTML tags. These tags are used for doing specific tasks in a JSP page. Each tag has its own functionality. Tags in JSP, like the HTML tags, are written within the characters '<' and '>' however, different types of tags uses additional characters within '<' and '>' characters.
List of JSP Tags
As we discussed above there are different types of tags in JSP. These are as follows :
JSP Custom Tags
Custom tag in JSP is know as user defined tag. In JSP a user can create its own tag for performing the specific task. Tag library is a collection of custom tag it contains the defined set of related custom tags and holds the object which implements the tags. Tag handler object implements a custom tag. TagLibraryDescriptor(tld) is an XML file contains the information about whole library and every tag (contained in the library).
Ads