<%@ page language="java" contentType="text/html; charset=UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <c:set var="totalCount" value="${ totalCount + 1 }" scope="application"></c:set> <c:set var="count" value="${ count + 1 }" scope="session"></c:set> 本網站總訪問人次:${ totalCount } <br/> www.2cto.com 其中您的訪問次數:${ count } <br/> <c:set var="test" value="by value property"></c:set> <c:set var="test">by body</c:set> <%=session.getAttribute("count")%> /*session.getAttribute('count')與var="count" scope="session"對應*/ <%=application.getAttribute("totalCount")%> /*application.getAttribute("totalCount") 與 var="totalCount" scope="application"對應*/ <br/> <br/> <br/> <br/> </body> </html>