创建 welcome cookie
代码:
<%dim numvisits
response.cookies("NumVisits").Expires=date+365
numvisits=request.cookies("NumVisits")
if numvisits="" then
response.cookies("NumVisits")=1
response.write("Welcome! This is the first time you are visiting this Web page.")
else
response.cookies("NumVisits")=numvisits+1
response.write("You have visited this ")
response.write("Web page " & numvisits)
if numvisits=1 then
response.write " time before!"
else
response.write " times before!"
end if
end if
%>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
结果:
Welcome! This is the first time you are visiting this Web page.
相关文章
- ASP ASPError 对象
- AJAX 数据库
- ASP 语法
- ASP SubFolders 集合
- ASP Pics 属性
- ASP TotalBytes 属性
- ASP StaticObjects 集合
- ASP CodePage 属性
- ASP Drives 属性
- ASP.NET HtmlImage 控件
- ASP.NET HtmlInputRadioButton 控件
- ASP.NET HtmlSelect 控件
- ASP.NET HtmlTableCell 控件
- ASP.NET HtmlTextArea 控件
- ASP.NET DataValueField 属性
- ASP.NET SelectedItem 属性
- ASP.NET SelectedValue 属性
- 使用 asp 写文本
- 显示随机的链接
- 设置内容类型