我使用多维 cookie 在我的应用程序中存储一个 cookie。例如
HttpCookie MyCookie = Request.Cookies["Temp"] as HttpCookie;
if (MyCookie != null)
{
MyCookie.Values["SID"] = Session.SessionID;
MyCookie.Values["NAME"] = "NAME";
MyCookie.Values["abc"] = "abc";
MyCookie.Values["xyz"] = "xyz";
...
}
现在检索我使用的这个多维 cookie。
string s = Request.Cookies["Temp"]["SID"]
我的问题是我只想让“Temp”cookie 中的“SID”值过期。我试过这个
Request.Cookies["Temp"]["SID"] = null;
但它不起作用。我应该怎么做从多维cookie中清除特定索引?