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
What is application in jsp?
What is jsessionid?
Which jsp implicit objects are thread safe?
Differentiate between jsp scriptlet tag and declaration tag.
How does a jsp engine work?
How do I use sendredirect?
What happens when a page is statically included in another jsp page?
Why is jstl used?
How does jsp engines instantiate tag handler classes instances?
What is a tag file?
When does a container initialize multiple jsp / servlet objects?
How to configure init parameters for jsp?
What are the different types scripting elements in jsp?
Is jsp static or dynamic?
What is the purpose of jsp?