home.jsp
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>
<%
String num = (String) application.getAttribute("num");
if (num == null) {
application.setAttribute("num", "1");
} else {
int cnum = Integer.parseInt(num);
cnum++;
application.setAttribute("num", cnum + "");
}
%>
오늘의 방문자 수 :<%=application.getAttribute("num")%>
</body>
</html>
'Programming > Servlet & JSP' 카테고리의 다른 글
url option (0) | 2020.02.23 |
---|---|
랜덤 당첨 (0) | 2020.02.23 |
방명록(어플리케이션) (0) | 2020.02.20 |
장바구니(쿠키) (0) | 2020.02.20 |
로그인(세션) (0) | 2020.02.20 |