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

Which class should you use to obtain design information about an object in java programming?

0 Answers  


Where are the local variables stored?

0 Answers  


What is return in java?

0 Answers  


Write a program to solve producer consumer problem in java?

0 Answers  


Is a case study a method or methodology?

0 Answers  






Q) I have a ArrayList object, in that object i have added 5 integer values, 5 float values, 5 string values. Now question is how can delete particular type of data ( i.e all int values or all float values or string values) in that list object at a time?

3 Answers   Aricent,


What is the difference between a break statement and a continue statement?

0 Answers  


Why does the integer quotient -0/3 yield 0, but the double quotient -0.0/3.0 yields – 0.0?

0 Answers  


What's the default access specifier for variables and methods of a class?

0 Answers  


Difference between operator overloading and function overloading

0 Answers   Tavant Technologies, Virtusa,


Consider that class classA, abstract class classB, and final classC have been defined.Which one of the following is correct? 1. classA extends classC implements classB 2. class A extends classB, classC 3. classA extends classB 4. classB implements classC

2 Answers  


What is the final keyword in java?

0 Answers  


Categories