This attribute is used to provide the JSP page description.
Syntax:
<
Example:
welcome.jsp
<%@ page info="w3schools" %> <html> <head> <title>info page directive example</title> </head> <body> <h3>Hello this is an info page directive example.</h3> </body> </html> |
web.xml
<web-app> <welcome-file-list> <welcome-file>welcome.jsp</welcome-file> </welcome-file-list> </web-app> |
Output:
Download this example.
Next Topic: JSP include directive with example.
Previous Topic: language attribute in JSP page directive with example.