創建 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 寫文本
- 顯示隨機的鏈接
- 設置內容類型