The info Attribute of page Directive In JSP

The info Attribute of page Directive In JSP

The info Attribute of page Directive In JSP

The info Attribute of page Directive In JSP

     

This section gives you the introduction about the info attribute of the page directive in JSP. This attribute simply sets the information of the JSP page which is retrieved later by using Servlet.getServletInfo() method. The value of the attribute will be a text string.

Here is the JSP code:

<%@page info="This is the example of info 
attribute of the page directive." %>
<html>
<head><title>
Info Attibute of page directive in JSP.
</title></head>
<body>
<%
out.println("Example of the info 
attribute of the page directive in JPS.");
%>
</body>
</html>

You can download the source code from below :

Download this JSP example.