counter2.asp
来自「电脑编程技巧与维护2000-5」· ASP 代码 · 共 13 行
ASP
13 行
<%
If IsEmpty(Session("IsNew")) Then
Application.Lock
Application("counter") = Application("counter") + 1
Application.UnLock
End If
Session("IsNew") = True
%>
<html>
<body>
你是第<%=application("counter")%>访问者!<p>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?