我正在为电子商务网站编写一个基本cookie,用于存储用户的IP以及其他详细信息。
然后,我们将记录他们在数据库中查看的页面,并提取最近查看的页面列表。
但是我遇到以下代码的问题。
dim caller
caller = Response.Cookies("caller")
if caller = "" then
caller = Request.ServerVariables("remote_host")
end if
运行此操作时,我收到以下错误消息。
“Sun ONE ASP VBScript运行时(0x800A01AE) 类不支持自动化“
有什么想法吗?谷歌没什么明显的。
答案 0 :(得分:1)
检查值时应该是Request.Cookies:
dim caller
caller = Request.Cookies("caller")
if caller = "" then
caller = Request.ServerVariables("remote_host")
end if