1.

What Are Jsp Directives?

Answer»

• JSP directives are messages for the JSP engine. i.e., JSP directives serve as a message from a JSP page to the JSP CONTAINER and control the processing of the entire page.
• They are used to set global values such as a class declaration, method implementation, output content type, etc.
• They do not produce any output to the CLIENT.
• Directives are ALWAYS enclosed within <%@ ….. %> tag.
• Ex: page directive, include directive, etc.

• JSP directives are messages for the JSP engine. i.e., JSP directives serve as a message from a JSP page to the JSP container and control the processing of the entire page.
• They are used to set global values such as a class declaration, method implementation, output content type, etc.
• They do not produce any output to the client.
• Directives are always enclosed within <%@ ….. %> tag.
• Ex: page directive, include directive, etc.



Discussion

No Comment Found