📄 0183.htm
字号:
<html>
<head>
<title>新时代软件教程:操作系统 主页制作 服务器 设计软件 网络技术 编程语言 文字编辑</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
<!--
body, table {font-size: 9pt; font-family: 宋体}
a {text-decoration:none}
a:hover {color: red;text-decoration:underline}
.1 {background-color: rgb(245,245,245)}
-->
</style>
</head>
<p align="center"><script src="../../1.js"></script></a>
<p align="center"><big><strong>session写的简单计数器</strong></big></p>
<div align="right">---摘自互联网</div>
<br><%@ page errorPage="errorpage.jsp" %><br>
<br>
<html><br>
<head><br>
<title>UseSession</title><br>
</head><br>
<body><br>
<%<br>
// Try and get the current count from the session<br>
Integer count = (Integer)session.getAttribute("COUNT");<br>
<br>
// If COUNT is not found, create it and add it to the session<br>
if ( count == null ) {<br>
<br>
count = new Integer(1);<br>
session.setAttribute("COUNT", count);<br>
}<br>
else {<br>
<br>
count = new Integer(count.intValue() + 1);<br>
session.setAttribute("COUNT", count);<br>
} <br>
// Get the User's Name from the request<br>
out.println("<b>Hello you have visited this site: "<br>
+ count + " times.</b>");<br>
%><br>
</body><br>
</html>
</table>
<p align="center"><script src="../../2.js"></script></a>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -