js:
读:document.cookie;
写:document.cookie ="key="+val;
C#:
HttpContext.Current.Request.Cookies
清除所有Cookie不能直接Clear(),我用着没有效果
循环CookieHttpCookieCollection一个一个清除比较好。
js:
读:document.cookie;
写:document.cookie ="key="+val;
C#:
HttpContext.Current.Request.Cookies
清除所有Cookie不能直接Clear(),我用着没有效果
循环CookieHttpCookieCollection一个一个清除比较好。