程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> jsp實現記錄訪問次數實例

jsp實現記錄訪問次數實例

編輯:關於JSP

 

主要實現單個頁面的訪問次數記錄與總訪問次數記錄

 ///////////////////////index.jsp/////////////////////////////////

主頁面

  <body>

  <a href="1.jsp">一</a>

  <%

  Integer count = (Integer)application.getAttribute("count");

    if(count==null){

     count=0;

    }

   %>

  <a href="2.jsp">二</a>

  <%

  Integer count1 = (Integer)application.getAttribute("count1");

    if(count1==null){

     count1=0;

    }

   %>

   總訪問量:

  <%=count+count1 %>

  </body>

///////////////////////////////////1.jsp//////////////////////////////////

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

   <%

    Integer count = (Integer)application.getAttribute("count");

    if(count==null){

     count=1;

     application.setAttribute("count",count);

    }else{

     count++;

     application.setAttribute("count",count);

    }

    %>

    訪問人數為:

    <%=count %>

<a href="index.jsp">返回首頁</a>

///////////////////////////////////2.jsp///////////////////////////////////////

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

   <%

    Integer count1 = (Integer)application.getAttribute("count1");

    if(count1==null){

     count1=1;

     application.setAttribute("count1",count1);

    }else{

     count1++;

     application.setAttribute("count1",count1);

    }

    %>

    訪問人數為:

    <%=count1 %>

<a href="index.jsp">返回首頁</a>

 


作者 chenglong0513

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved