?? counter.asp
字號(hào):
<%
'創(chuàng)建 PageCounter 對(duì)象實(shí)例。
Set MyPageCounter=Server.CreateObject("MSWC.PageCounter")
'增加此網(wǎng)頁的計(jì)數(shù)器值。
MyPageCounter.PageHit
'是否提交重置信息。
if Request("reset")="on" then
'重置此網(wǎng)頁的計(jì)數(shù)器。
MyPageCounter.Reset()
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Page Counter</title>
</head>
<body>
<h1 align="center">Page Counter</h1>
<center>
<h3>這個(gè)Web 頁被瀏覽了
<font size="30" color="#cc9999"><%=MyPageCounter.Hits %></font> 次。</h3>
<Form name="PageCounter" method="get" action="">
<input type="Submit" value="刷新網(wǎng)頁">
<input type="checkbox" name="reset">重置網(wǎng)頁計(jì)數(shù)器
</form>
</center>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -