Use Action Filters to Check Session Timeout in ASP.NET Core MVC
Session is a useful tool for storing user data while the user browses a web app. When the session expires, the user needs to be logged out and redirected to a different page. With good old ASP.NET, there is an event called Session_End that is triggered whenever the session terminates. Unfortunately, .NET Core doesn’t have […]
Use Action Filters to Check Session Timeout in ASP.NET Core MVC Read More »