Answers for "session timeout in asp.net core mvc"

C#
1

how to configure session timeout in asp.net core

services.AddSession(options =>
            {
                options.IdleTimeout = TimeSpan.FromMinutes(5);//You can set Time   
            });
Posted by: Guest on June-16-2021

Code answers related to "session timeout in asp.net core mvc"

C# Answers by Framework

Browse Popular Code Answers by Language