19
votes

I am using 'Response.Cookies.Append' for setting the culture as suggested in ASP.NET Core 2.1 docs (https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization?view=aspnetcore-2.1#implement-a-strategy-to-select-the-languageculture-for-each-request).

And it is working perfectly fine at my station. But when my colleague fetches my changes, It is not working.

During debug, I found 'Response.Cookies.Append' didn't add the cookie. Anyone else meets the issue? Any solution?

1
Is Response.Cookies.Append called if you put a breakpoint? Is there any demo to reproduce your issue? - Edward
Yes, it was called, but not added into cookies at the end. - Soledad_Ice

1 Answers

50
votes

You might have a configured CookiePolicyOption in your Startup.cs in your ConfigureServices-Method.

services.Configure<CookiePolicyOptions>(options =>
  {
      // This lambda determines whether user consent for non-essential cookies is needed for a given request.
      options.CheckConsentNeeded = context => true;
      options.MinimumSameSitePolicy = SameSiteMode.None;
  });

If thats the case, you can set the cookie with the CookieOption.IsEssential = true like so:

var cookieOptions = new Microsoft.AspNetCore.Http.CookieOptions()
    {
      Path = "/", HttpOnly = false, IsEssential = true, //<- there
      Expires = DateTime.Now.AddMonths(1), 
    };

Update: If you are using SameSiteMode.None, you also have to set the "Secure" property to true. The cookie will work with https only

Alternativly SameSiteMode.Unspecified does work without https/secure-flag

Source: https://docs.microsoft.com/en-us/aspnet/core/security/samesite?view=aspnetcore-3.1