4

有没有人有一套开箱即用的 .NET 文件来支持欧盟 cookie 立法?快速、简单且可适度定制的东西会很好。

4

2 回答 2

3

我用这个

控制器:

public ActionResult ClearAllCookiesAndRedirect()
        {
            HttpCookie aCookie;
            string cookieName;
            int limit = Request.Cookies.Count;
            for (int i = 0; i < limit; i++)
            {
                cookieName = Request.Cookies[i].Name;
                aCookie = new HttpCookie(cookieName);
                aCookie.Expires = DateTime.Now.AddDays(-1);
                Response.Cookies.Add(aCookie);
            }

            return View();
        }

鉴于:

 HttpCookie cookie = Request.Cookies["AcceptCookiesEULaw"];
    if (cookie == null)
    {
         //your html code here
    }
于 2015-01-15T10:58:51.883 回答
3

晚会有点晚了,但我创建了这个:
https
://github.com/hudo/EUCookiesNET 你也可以在 nuget 上找到它。OWIN 版本即将发布。

于 2015-02-26T16:14:16.427 回答