⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 applicationcount.jsp

📁 《jsp网站开发技术》中的源代码(清华大学出版社)
💻 JSP
字号:
<%@ page language="java"%>
<html>
<head><title>Counter</title></head>
<body BGcolor=gray>
<%
Integer count = null;
synchronized (application) {
 count=(Integer)application.getAttribute("basic");
if (count == null){
 count= new Integer(0);
}
count = new Integer(count.intValue() + 1);
application.setAttribute("basic", count);
}
%>
<h1>
<font color=white>欢迎来学习JSP,你是第<%= count %>位来访者.</<%= count %></font>
</h1>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -