SameSite cookies Issue

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
3 Jahre weitere
I wanna load part HTML code from another website:

<a target="_blank" href="https://trustseal.enamad.ir/?id=163012&amp;Code=TK0kzMINU8wONMdCf89Z"><img src="https://Trustseal.eNamad.ir/logo.aspx?id=163012&amp;Code=TK0kzMINU8wONMdCf89Z" alt="" style="cursor:pointer" id="TK0kzMINU8wONMdCf89Z"></a>

unfortunately, i have this error and it doesn't render the image here.

(index):1 A cookie associated with a cross-site resource at http://trustseal.enamad.ir/ was set without the `SameSite` attribute. A future release of Chrome will only deliver cookies with cross-site requests if they are set with `SameSite=None` and `Secure`. You can review cookies in developer tools under Application>Storage>Cookies and see more details at https://www.chromestatus.com/feature/5088147346030592 and https://www.chromestatus.com/feature/5633521622188032.

where I can set this setting to be able to load these cookies?
3 Jahre weitere
Hi there,
For those who faced the same issue:
Just add this key/value in <appSettings> of your web.config
<add key="aspnet:SuppressSameSiteNone" value="true" />

Regards,
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.