您的位置:首页 > 移动开发

jsp application对象使用 统计访问人数

2017-05-10 16:17 399 查看
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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>
<%
Integer count=(Integer) application.getAttribute("count");
if(count!=null){
count++;
}else{
count=1;
}
application.setAttribute("count", count);
%>
有<%=count %>人访问你的网站
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: