Answer Posted / guest
A JSP directive affects the overall structure of the servlet
class. it usually has the following form:
<%@ directive attribute="value" %>
How ever , you can also combine multiple attribute settings
for a single directive, as follows:
<%@ directive attribute1="value1" attribute2="value2" --
attrubuteN="value N" %>
These are two main types of diretive:page, which lets to
do things like import classes,customize the servlet
superclass, and the like; and include,which lets to insert a
file into the servlet class at the time the JSP file is
translated into a servlet.
| Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
in jsf page i use two dropdown list.i.e state & district.if state dropdown is selected then & then district is enable.what should be my code.
Explain scriptlet, expression and declaration in jsp.
What are the jsp lifecycle phases?
What is the jsp?
How does jsp engines instantiate tag handler classes instances?
What do you mean by jsp?
Is jsp server side or client side?
What is jsp translation time?
How do I use comments within a jsp page?
Which language is used to write servlets and jsp?
Can jsp run without server?
What is the include directive?
What is an implicit object?
What are directives in jsp?
Mention the implicit objects in a jsp.