Description
"Hi, I want to manage user sessions in a Blazor Server application with the following requirements:"
No JavaScript – I do not want to use any JavaScript for session handling.
Multi-tab session sync – If the app is opened in multiple tabs in the same browser, starting or updating a session in one tab should automatically reflect in all the other tabs.
Session persistence on page refresh – The session should remain active and accessible even after refreshing the page.
No Entity Framework – I don't want to use Entity Framework or any database ORM.
No third-party packages – I want to achieve this only with built-in .NET/Blazor tools, without relying on external libraries.
Server-side session management – The session data should be stored and managed on the server.
No cookies
i need somthing like mvc Session