I am a beginner. <%@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>
I tried the above program. Save the file with .jsp extension. I have Tom cat. Can you tell me the procedure to run this so i can see the desired result..