변수 선언 후 페이지 새로고침 될 때마다 1씩 값 증가시키기

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>

<%! int num; %>
<%  num++;   %>
<h3>num : <%=num %></h3>

</body>
</html>

 

아주 간단한 문제이다.

 

선언부에 전역변수를 선언 후

scriptlet에서 변수를 증가시켜준다.

 

+ Recent posts