Home Jsp INTRODUCTION TO JSP DECLARATIVES



INTRODUCTION TO JSP DECLARATIVES
Posted on: February 13, 2008 at 12:00 AM
JSP Declaratives begins with <%! and ends %> with .

INTRODUCTION TO JSP DECLARATIVES

     

Syntax of JSP Declaratives are:

  <%!
  //java codes
   %>

JSP Declaratives begins with <%! and ends %> with .We can embed any amount of java code in the JSP Declaratives. Variables and functions defined in the declaratives are class level and can be used anywhere in the JSP page.

Example:

 

 

 

<%@page contentType="text/html" %>

<html>

<body>

<%!
int cnt=0;
private int getCount(){
//increment cnt and return the value
cnt++;
return cnt;
}
%>

<p>Values of Cnt are:</p>

<p><%=getCount()%></p>

<p><%=getCount()%></p>

<p><%=getCount()%></p>

<p><%=getCount()%></p>

<p><%=getCount()%></p>

<p><%=getCount()%></p>

</body>

</html>

The above example prints the value of variable cnt.
To execute the code click below.

Related Tags for INTRODUCTION TO JSP DECLARATIVES:
javacjspclassvariablesfunctionsfunctionfuniovariablesedpageembedriajsdefineuncwheremountdeclarativeecanvaruseinlevelasmntcajclesemfuncagedefinedsspatanyivandarcodcodevassrithavabablatieclfinndodeono


More Tutorials from this section

Ask Questions?    Discuss: INTRODUCTION TO JSP DECLARATIVES   View All Comments

Post your Comment


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

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.