Sun Jan 11, 2009 1:36 am
<HTML>
<HEAD>
<TITLE>JSP page Counter</TITLE>
</HEAD>
<BODY>
<H1>JSP page Counter</H1>
<%
Integer applicationCount = (Integer)application.getAttribute("applicationCount");
if (applicationCount == null) {
applicationCount = new Integer(1);
} else {
applicationCount= new Integer(applicationCount.intValue() + 1);
}
application.setAttribute("applicationCount", applicationCount);
%>
<BR>
Visitors to this page so far <%=applicationCount%> (visitor).
</BODY>
</HTML>
Wed Mar 25, 2009 4:17 am
Fri Apr 24, 2009 8:23 pm
Sun Oct 04, 2009 10:13 am
Sun Oct 04, 2009 11:11 am
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.