<html>
<head>
<title>Cookie Counter. ver Session</title>
</head>
<body>
<h4>Welcome to my blog</h4>
<%
// getAttribue()는 object형을 반환
// wrapper클래스의 사용이 필요.
Integer number = (Integer)session.getAttribute("counter");
if(number==null) { number = new Integer(1); }
else { number = new Integer(number.intValue()+1); }
// 세션의 저장.
session.setAttribute("counter", number);
%>
<p>Count Today : <%= number %></p>
</body>
</html>
Posted by 홍반장