/web/DRCP/war/implicitobjects.jsp
http://drcp.googlecode.com/ · JavaServer Pages · 36 lines · 32 code · 4 blank · 0 comment · 3 complexity · a2bd9b87596162612aae0d70f1cbbf65 MD5 · raw file
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <% if (pageContext.getAttribute("pageCount")==null) {
- pageContext.setAttribute("pageCount", new Integer(0));
- }
- if (session.getAttribute("sessionCount")==null) {
- session.setAttribute("sessionCount",new Integer(0));
- }
- if (application.getAttribute("appCount")==null) {
- application.setAttribute("appCount",new Integer(0));
- }
- %>
-
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Insert title here</title>
- </head>
- <body>
- <% Integer count = (Integer)pageContext.getAttribute("pageCount");
- pageContext.setAttribute("pageCount", new Integer(count.intValue()+1));
-
- Integer count2 = (Integer)session.getAttribute("sessionCount");
- session.setAttribute("sessionCount",new Integer(count2.intValue()+1));
-
- Integer count3 = (Integer)application.getAttribute("appCount");
- application.setAttribute("appCount",new Integer(count3.intValue()+1));
- %>
- Page Count = <%= pageContext.getAttribute("pageCount")%>
- <br/>Session count = <%= session.getAttribute("sessionCount")%>
- <br/>Application count = <%= application.getAttribute("appCount")%>
- <br/>Time = <%= new java.sql.Time(System.currentTimeMillis()) %>
-
- </body>
- </html>