Home Mysql Mysql5 The info Attribute of page Directive In JSP
Questions:Ask|Latest



The info Attribute of page Directive In JSP
Posted on: April 18, 2011 By Deepak Kumar
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.


Recommend the tutorial

Ask Questions?    Discuss: The info Attribute of page Directive In JSP  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 
Comments