Hello Friends,
In this article, I will explain how to Use Cookies in ASP.NET CORE .
1. Let me show you how to Implement the Cookie in an ASP.NET Core application.
Configuration
As for configuring the behavior of cookies globally, you can do it in the Startup.
public void ConfigureServices(IServiceCollection services)
{
services.Configure<CookiePolicyOptions>(options =>
{
options.CheckConsentNeeded = context => true;
options.MinimumSameSitePolicy = SameSiteMode.None;
options.HttpOnly = HttpOnlyPolicy.Always;
options.Secure = CookieSecurePolicy.Always;
// you can add more options here and they will be applied to all cookies (middleware and manually created cookies)
});
...
}
2. CookieOptions
There are different cookie options available. It extends the cookie behavior in the browser. OptionsDomain - The domain you want to associate with a cookiePath - Cookie PathExpires - The expiration date and time of the cookieHttpOnly - Gets or sets a value that indicates whether a cookie is accessible by client-side script or not.Secure - Transmit the cookie using Secure Sockets Layer (SSL) that is, over HTTPS only.
Happy programming!!Don’t forget to leave your feedback and comments below!Regards Sujeet Bhujbal -------------------------------------------------------------------------------- Blog: www.sujeetbhujbal.com Personal Website :-http://sujeetbhujbal.wordpress.com/ CodeProject:-http://www.codeproject.com/Members/Sujit-Bhujbal Linkedin :-http://in.linkedin.com/in/sujitbhujbal Twitter :-http://twitter.com/SujeetBhujbal ------------------------------------------------------------------------------