标签: c# php asp.net cookies
我正在尝试使asp.net cookie像Response.Cookies["username"].Secure = true一样安全。有些原因导致这些失败。我的意思是在登录后我设置了这个,然后新页面显示错误"Page can not displyed"。
Response.Cookies["username"].Secure = true
"Page can not displyed"
Response.Cookies["username"].HttpOnly= true适用于所有Cookie。不是Secure。
Response.Cookies["username"].HttpOnly= true
Secure
是因为我在localhost上使用吗?它需要https://吗?
https://
答案 0 :(得分:1)
HttpCookie的Secure属性意味着cookie仅通过SSL传输。因此,要测试它,您需要自行生成证书,并让您的站点也响应https请求。