![]() |
cookies and restart session in a different browser tab - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html) +--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html) +---- Forum: English (https://www.atozed.com/forums/forum-16.html) +----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html) +----- Thread: cookies and restart session in a different browser tab (/thread-2878.html) |
cookies and restart session in a different browser tab - staff@ergosoft.it - 09-28-2022 Hi, in my application I have to use cookies (Servercontroller.cookieoptions.useCoolkies: = True) ... I need that if a user opens the same app in a different browser tab to start with a new session (instead of using the current one) how can I do ? a solution I found is to detach the cookies ... but unfortunately I need it for other reasons thanks Alessandro Romano RE: cookies and restart session in a different browser tab - Moskwa - 10-13-2022 (09-28-2022, 09:01 AM)staff@ergosoft.it Wrote: Hi, Hello, did you find solution ? Marcin RE: cookies and restart session in a different browser tab - Alexandre Machado - 10-17-2022 If you start a new session in a new browser tab, you will lose the existing session. I believe that's not your intent. If you want to have multiple sessions in different browsers tab, each tab (i.e. session) must have a unique URL address. That's the reason for the SessionOptions.UniqueURL property. That's how browsers work. It's the same with any application out there (e.g. GMail and other web based email apps) If you explain why are you trying to do that instead of how you want to do it, maybe we can help you more. |