InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by JSP Directives? |
|
Answer» These are the messages to JSP container, and they provide global information for an entire JSP page. JSP directives are used by developers to GIVE special instruction to a container for translation of JSP to servlet code. These directives can contain many attributes by comma separated as key-value pairs. JSP directives are DESCRIBED in <%@ %> TAGS. |
|