what is custom tags with example?

Answers were Sorted based on User's Feedback



what is custom tags with example?..

Answer / rakesh

A custom tag is a user-defined JSP language element. When a
JSP page containing a custom tag is translated into a
servlet, the tag is converted to operations on an object
called a tag handler

ex-bodyless tag 2 tags with body
1<tagName attributeName="value"
anotherAttributeName="anotherValue"/>

2.<tagName attributeName="value"
anotherAttributeName="anotherValue">
...tag body...
</tagName>

Is This Answer Correct ?    2 Yes 0 No

what is custom tags with example?..

Answer / rex

JSP technology also provides a mechanism for encapsulating other types of dynamic functionality in custom tags, which are extensions to the JSP language. Custom tags are usually distributed in the form of a tag library, which defines a set of related custom tags and contains the objects that implement the tags.

Is This Answer Correct ?    0 Yes 0 No

what is custom tags with example?..

Answer / ravi

Custom tags are 5 type they are
1. simple custom tag
2. param custom tag
3. iterator custom tag
4. body custom tag
5. nested custom tag

if we want write a simple custom tags, we need to follow
these 5 steps
1. we need write directory taglib and uri to ur jsp page
2. we need call custom tag to ur jsp page
3. we need declare taglib uri and taglib loaction in web.xml
4. we need write taglib Discriptor(TLD) file
5. we need write tag handler class

if u want to write tag handler class, our class must
implements tag interface, it available in
javax.servlet.jsp.tagext.Tag package

Tag is an Interface it contains 6 abstract methods and 4
constant variables i.e,

Abstract methods Constants
PageContext EVAL_BODY_INCLUDE
setParent SKIP_BODY
getParent EVAL_PAGE
doStartTag SKIP_PAGE
doEndTag
relase

it contain some more explanation is there....!

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

Can you achieve runtime polymorphism by data members?

0 Answers  


Which one of the following suits the description of a string better: derived or primitive?

0 Answers  


Can string be considered as a keyword?

0 Answers  


How do you add an arraylist to an array in java?

0 Answers  


What are uses of Hash Code?

2 Answers   Cognizant,






What are teh sub-classes of a component class?

2 Answers  


What does nextint () do in java?

0 Answers  


How do you check whether the list is empty or not in java?

0 Answers  


Is string pool garbage collected?

0 Answers  


What is the super void?

0 Answers  


Which class represents the socket that both the client and server use to communicate with each other?

0 Answers  


whats the life cycle of jsp

15 Answers   Satyam,


Categories