✔ JSP CHAPTERS:-
1. JSP Overview
2. JSP Hello World Example
3. JSP Scriplet Tag
4. JSP Declaration Tag
5. JSP Expression Tag
6. JSP Comment Tag
7. JSP Directives
8. JSP Implicit Objects
9. JSP Action Tags
10. Exception Handling
11. JSP Expression Language
1. JSP Overview
2. JSP Hello World Example
3. JSP Scriplet Tag
4. JSP Declaration Tag
5. JSP Expression Tag
6. JSP Comment Tag
7. JSP Directives
8. JSP Implicit Objects
9. JSP Action Tags
10. Exception Handling
11. JSP Expression Language
JSP Comment Tag :Previous Next: JSP Implicit Objects
JSP Comment Tag :Previous Next: JSP Implicit Objects
JSP directives
JSP directives provides the instructions and directions to the web container about how to control the processing JSP page.
Syntax: <%@ directiveName attributeName=”attributValue” %>
Types of JSP directives.
JSP page directive:
Page directive is used to provide the instructions to the web container that are specific to the current JSP page. It defines the page specific attributes like scripting language, error page etc.
Page directive attributes.
- 1. import
- 2. session
- 3. buffer
- 4. autoflush
- 5. contentType
- 6. isErrorPage
- 7. errorPage
- 8. isThreadSafe
- 9. language
- 10. info