This attribute is used to set the content type of the current JSP page.
Syntax:
<
Example:
welcome.jsp
<%@ page contentType="application/msword" %> <html> <head> <title>contentType page directive example</title> </head> <body> <h3>Hello this is a contentType 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: isErrorPage and errorPage attribute in JSP page directive with example.
Previous Topic: autoFlush attribute in JSP page directive with example.