asp文章点击数代码
时间:2013-05-27 20:02:03
发布:admin
来源:未知
<%@ language="vbs" %>
<html>
<head>
<title>使用cookies制作一个简单的计算器</title>
</head>
<body>
<%
n=request.cookies("user")("times")
if n=0 then
n=1
response.write"本页面第一次被访问"
else
n=n+1
response.write"本页面已经被访问了"& n &"次"
end if
response.cookies("user")("times")=n
%>
</body>
</html>
|
关键字:html |