0

I have added

<forms cookieless="UseCookies" cookieSameSite="None" timeout="5" />

to my web.config file. But the application is still not working on iOS 12. Is there a way to remove SameSite cookie parameter in ASP.NET if device running iOS 12?

user2412672
  • 1,459
  • 3
  • 20
  • 36

1 Answers1

0

Found below:

Source

Versions of Safari and embedded browsers on MacOS 10.14 and all browsers on iOS 12. These versions will erroneously treat cookies marked with SameSite=None as if they were marked SameSite=Strict. This bug has been fixed on newer versions of iOS and MacOS.

Bug Report is here - https://bugs.webkit.org/show_bug.cgi?id=198181

Aditya Bhave
  • 998
  • 1
  • 5
  • 10