这给我的消息是“对象不支持此属性或方法:'Server.CreateObject(...)。cookies'”:
set response.cookies("x")= Server.CreateObject("Scripting.Dictionary")
这也是:
set mydictionary = Server.CreateObject("Scripting.Dictionary")
mydictionary("1").add "0","allo"
set response.cookies("x")= mydictionary
如何将字典放入cookie中?谢谢你的帮助。
答案 0 :(得分:0)
正如评论中提到的那样,你不能将字典存储在cookie中,因为它是一个对象,但你可以使用Session存储字典,并将其用于当前用户会话,无论如何。