ASP MVC 쿠키가 유지되지 않음 쿠키를 저장하고 검색하는 간단한 코드가있는 ASP MVC 앱이 있지만 어떤 이유로 쿠키가 지속되지 않습니다. 컨트롤러의 코드는 다음과 같습니다. if (System.Web.HttpContext.Current.Response.Cookies["CountryPreference"] == null) { HttpCookie cookie = new HttpCookie("CountryPreference"); cookie.Value = country; cookie.Expires = DateTime.Now.AddYears(1); System.Web.HttpContext.Current.Response.Cookies.Add(cookie); } 다시로드하려면 : if (System.Web.H..