goodpagecounter.aspx

来自「asp.net技术内幕的书配源码」· ASPX 代码 · 共 24 行

ASPX
24
字号
<Script Runat="Server">

Sub Page_Load
  Application.Lock
  Application( "PageCounter" ) += 1
  lblCount.Text = Application( "pageCounter" )
  Application.Unlock
End Sub

</Script>

<html>
<head><title>GoodPageCounter.aspx</title></head>
<body>

This page has been requested:
<asp:Label
  ID="lblCount"
  Runat="Server" />
times!

</body>
</html>

⌨️ 快捷键说明

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