"Class does not support automation"错误,当我调用请求.服务器变量("remote_host")



我正在为一个电子商务网站编写一个基本的cookie,该网站将存储用户的IP以及其他详细信息。

然后,我们将在数据库中记录他们查看的页面,并提取最近查看的页面列表。

但是,我对以下代码有问题。

dim caller
caller = Response.Cookies("caller")
if caller = "" then 
    caller = Request.ServerVariables("remote_host")
end if  

在运行它时,我收到以下错误消息。

"Sun ONE ASP VBScript runtime (0x800A01AE)类不支持自动化"

有什么想法吗?谷歌没有什么明显的。

检查值时应为 Request.Cookie:

dim caller
caller = Request.Cookies("caller")
if caller = "" then 
    caller = Request.ServerVariables("remote_host")
end if

相关内容

  • 没有找到相关文章

最新更新