User-1347185096 posted
Since years I am running a view asp.net websites without any problems. Since a few days, some customers using IE or Edge browser report login problems.
I found the reason for this on my computer. The Edge default setting for cookies is now "block all cookies".
Therefore the webshop cannot login an users on Edge because the session state will not be on a logged-in status.
I found some help and I added this line to web.config:
<system.web>
<sessionState cookieSameSite="None" cookieless="true" timeout="360"/>
<compilation debug="true" targetFramework="4.7.2">
Now it is working but I have the session included in the URL :-(
https://ecommerce.fr-buero.de/(S(pi4mduiu1r1xbubxnm0rersu))/qseek_SQLsort.aspx
It has worked in the past without any Problems...
Can anyone help me to fix this topic? I need to have the session in the webhop to store some userdata within the session.