📄 counter.aspx
字号:
<Script Language="VB" runat="Server">
Sub Page_Load(sendeer as object,e as Eventargs)
If Not Session("On_line") Then
Application.Lock
Application("Counter")+=1
Application.UnLock
Session("On_line")=True
End If
counter.text=Application("Counter")
End Sub
</Script>
<Html>
<Head>
<Title>访问全站点计数器</Title>
</Head>
<Body>
您是第
<asp:Label id="Counter" runat="Server"/>
个用户
</Body>
</Html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -