📄 lx10_8.jsp
字号:
<%@ page language="java" %>
<%
int count=0;
String temp=(String) application.getAttribute ("COUNT");
if ( temp== null ) { //第一次访问
count = 1;
application.setAttribute ("COUNT",String.valueOf(count)); //定义application变量COUNT
}
else {
count = Integer.parseInt(temp);
count++;
application.setAttribute ("COUNT",String.valueOf(count));
}
%>
<html>
<head> <title>JSP程序</title>
</head>
<body>
该网站共被访问<%=count%>次。 </p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -