标签: cookies asp-classic
如何在经典ASP生成的会话cookie上设置域?
我正在为我的网站使用2个网址,www.example.com和shop.example.com,我需要向两个网址发送会话Cookie。
答案 0 :(得分:1)
您应该将其设置为:
Response.Cookies("YourCookieName").domain = ".example.com"
注意领先的“。”