jspは1ページへのアクセス数を統計する

6671 ワード

テキストリンク:https://blog.csdn.net/c_major/article/details/45285995


<html>
<head>
<title>              title>
head>
<body>

       : 
body>
html>

JSP:暗黙的なオブジェクトでウェブサイトのアクセス回数を統計するjsp暗黙的なオブジェクト趙振江
暗黙オブジェクトアプリケーションオブジェクト
暗黙的なオブジェクトを使用して、あるサイトにJSPプログラムを作成し、そのサイトへのアクセス数を統計します.
1つは、顧客別統計(ブラウザ別統計、1つのブラウザがウェブサイトにアクセスすれば、1回アクセスしても、言い換えればこのブラウザが複数回のウェブサイトをリフレッシュすれば、1回アクセス)である.
もう1つのケースは、1回のアクセスでもページをリフレッシュします.
暗黙的なオブジェクトで実現する必要があります.counter.jsp


 

<html>
  <head>
    <base href="">
 
    <title>My JSP 'counter.jsp' starting pagetitle>
 
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    
 
  head>
  
 
  <body>
    This is my JSP page. <br>
 
           : 。
  body>
html>