Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

how to configure session timeout in asp.net core

 services.AddSession(options =>
            {
                options.IdleTimeout = TimeSpan.FromMinutes(5);//You can set Time   
            });
 
PREVIOUS NEXT
Tagged: #configure #session #timeout #core
ADD COMMENT
Topic
Name
8+2 =