Page Directive attribute - language


 

Page Directive attribute - language

This section contains description of language attribute of page Directive.

This section contains description of language attribute of page Directive.

Page Directive attribute - language

This section contains description of language attribute of page Directive.

language Attribute :

The language attribute is one of attribute of page directive. Its functionality to specify the scripting language used in JSP page. By default its value is "java". This attribute of page directive specifies the other scripting languages to be used by the JSP page.

Syntax :

<%@page language="scripting language"%>

Example :  In this example we are using language attribute of page directives.

<%@page language="java"%>

<html>
<head>
<title>language Attribute of Page Directives</title>
</head>

<body>
<font size="5" color="green"> 
<%
String name = "Roseindia";
out.println("Hello " + name + "!");
%> 
</font>
</body>

</html>

Output :

Ads