?? ch3-3.jsp
字號:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<html>
<title>簡易計數(shù)器</title>
<body>
<%! int count=0;%>
<%
String usercount; //usercount 用來記錄使用者上網(wǎng)時的人數(shù)
request.getSession(true); //建立使用者的 session
if(session.isNew()) //判斷是否已經(jīng)為目前的使用者建立過 session
{
count++;
usercount = String.valueOf(count);
session.putValue("usercount",usercount);
}
out.print("您是本站的第 <font color=red size=5>");
out.print(session.getValue("usercount"));
out.print(" </font>位訪客");
%>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -