Home Tutorial Jsp Page Directive attribute - language

 
 

Page Directive attribute - language
Posted on: November 29, 2012 at 12:00 AM
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 :

Related Tags for Page Directive attribute - language:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.