as per recommendations I have written the rewrite rule to set the SameSite attribute for all cookies but that is not helping out. Surprisingly whether I have this rule added or not value for samesite attrigute is always blank. (I was expecting , None or Lax, or strict) . Does anybody know why any of my cookies is not getting value for samesite attribute? I am trying this on Chrome. screen shot from network tab , developer tool
Windows 8 server , IIS 7.5 , .net version 4.6 , ASP.NET_SessionId cookies is not reflecting SameSite attribute
213 Views Asked by Sumit D. At
1
There are 1 best solutions below
Related Questions in ASP.NET
- Implementing Azure AD B2C Authentication in .NET 8 Blazor Project (RenderMode: InteractiveAuto)
- Azure Application Insights Not Displaying Custom Logs for Azure Functions with .NET 8
- IIS Rewrite Module exclude bots but allow GoogleBot
- Angular 16 sending null values to API
- I am the domain admin, newbie, how do I connect youtube.com on my domain?
- Dropdown list showing SQLServer2005SQLBrowserUser$DONSERVER instead of Active Directory group name in ASP.NET MVC C#
- ASP.NET Identity, Losing Ability to Login until Application Pool Recycles
- How to unprotect ASP.NET FormAuthentication cookie
- How does it work using ASP.NET FormAuthentication
- What is the purpose of a completely standalone 'this'?
- Is there a way to read .csproj PropertyGroup variable in c#
- MSBuild trying to copy different dll with similar name into project sporadically
- Minimizing IdentityServer4 Round Trips in Microservice Architecture with Ocelot
- Azure AD guest account in web app authentication user claims data
- Receiving 400 bad request on post when customer auth handler is used
Related Questions in WINDOWS-8
- Rstudio for Windows 8.1 (64bit)?
- visual studio How do I run a windows 2008 ce Solution on VS 2017?
- How to solve a connection refused to localhost error SQLCODE -902?
- Access denied when using findstr windows command
- Signing kernel mode driver for Windows 8.1
- How to create share and grant multiple permissions on Windows8 using script
- Compiling Windows apps for other versions of Windows
- Windows 8 server , IIS 7.5 , .net version 4.6 , ASP.NET_SessionId cookies is not reflecting SameSite attribute
- HOW TO INSTALL A NODE V>14 IN WINDOWS 8?? Please someone help me
- git clone : This application requires one of the following versions of .NET Framework: .NET framework,Version =v4.7.2
- Error running WPF application using ChromiumWebBrowser from CefSharp.Wpf on Windows 8.0 SP1
- How to write programs for Windows RT?
- Flutter update causing error "Flutter requires PowerShell 5.0 or newer" irrecoverable
- Task Scheduler did not launch task "\abc" because instance "(GUID)" of the same task is already running
- VS Code Failed to Install Visual Studio Code Update
Related Questions in IIS-7.5
- Issue when moving a very old XMLRAD IIS app to another server
- MVC default Route Denied Access
- Not getting any output of a query when hosted site on IIS server but it is running fine on windows powershell
- I can't create websites because the associations don't appear in IIS Express 10
- How to validate Microsoft.Web.Administration ObjectState
- Bind IIS to hostname (internal computer name)
- pwsh command with python subprocess is not working when using IIS server
- IIS redirect from page.nl to page.nl/other
- windows server 2008 r2 self signed certificate sha256
- How to map "Configuration Editor" items with "Feature Delegation" items?
- SSO Works on Local Computer IIS but not on IIS
- Much memory use by .net 7 on windows server 2008
- server IIS PHP UNC PATH stop working (is_file(),file_extist()) with share folders
- How to access Shibboleth Header and CGI variable with IIS and in Windows 2008 R2
- Http chunk encoding miss end of chunked encoding("0\r\n") or tailer("\r\n") on IIS 7.5
Related Questions in SAMESITE
- Why is Sec-Fetch-Site: cross-site when redirecting to same-site
- NextJs not setting the cookie from django csrf_token
- Browser is not sending the cookie with fetch, allthough server and frontend have the same ip address (but different ports)
- Cookies on localhost not being set... what to do?
- something weird with samesite cookies
- Angular SPA which is used as Frontend for my custom OIDC provider is not sending session cookie to my backend /signin API
- Can I recreate next-auth v4 session on the client side in iframe?
- Passport.js - Chrome will not allow cross-site cookies
- JSESSIONID cookie dropped and recreated upon receiving SSO response on iPhone app though SameSite policy is set
- How is SameSite defined for domains which are not on the public suffix list?
- Reasons samesite=none not sent
- SpringBoot - How I can configure samesite none Csrf Cookie (Spring Security 6.2)
- Storing jwt in httponly cookie requires both frontend and backend apps to be on the same domain (MERN)
- Chrome 3rd party cookie in iframe (SameSite=None; Secure)
- Why Cookies with SameSite=None aren't sent within an <iframe> in Firefox and Chrome?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There are two ways to set SameSite attribut.
First is set in Global.asax page.
Second is directly setting in web.config. Add
<sessionState cookieSameSite="Strict" />under<system.web>.You also can use url rewrite to set, but I don't know your rule and cannot know what caused rewrite failed.
Note: clear cache and cookie in browser after each modification or use private mode of browser. Otherwise it still show the previous cookie.