반응형
# 사이트 방문자 수 측정
## 방법 1 (Application 객체 사용)
단, 새로고침 진행 시 꾸준히 늘어남...
<%@ page contentType="text/html;charset=euc-kr" session="true"%>
<%
if (application.getAttribute("Counter") != null) {
String strCounter = String.valueOf(application.getAttribute("Counter"));
int counter = Integer.parseInt(strCounter) + 1;
application.setAttribute("Counter", counter);
} else {
application.setAttribute("Counter", 1);
}
%>
<HTML>
<HEAD>
</HEAD>
<BODY>
방문자 수 : <%=application.getAttribute("Counter")%>
</BODY>
</HTML>
반응형
'기타' 카테고리의 다른 글
챗봇이란? (0) | 2020.08.17 |
---|---|
프레임워크, 프로그래밍 언어, 라이브러리 (0) | 2020.08.17 |
Xampp MySQL shutdown unexpectedly 에러... (0) | 2020.08.12 |
홈페이지 방문자 통계 설정하기(구글 애널리틱스, Report API) (0) | 2020.08.11 |
쿠키, 세션, 캐시 (0) | 2020.08.11 |