When.com Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. You can change session timeout value in web.config. If the desired session timeout is 60 minutes, markup code in web.config should look like this: <system.web> <sessionState timeout="60" />

  3. Best way to deal with session timeout in web apps?

    stackoverflow.com/questions/114321

    Another solution would be to use a session timeout reminder script that popups a dialog to remind the user that the session is about to time out. The popup should display a "Logout" and a "Continue using application" that makes a ajax request to update the session time out.

  4. How to stop session timeout after 20minutes in asp.net?

    stackoverflow.com/questions/10580274

    Enable the session state time-out and set the Session timeout for 60 minutes. Select Application Pools > DefaultAppPool > Properties. From the Performance tab under Idle timeout, set Shutdown worker processes after being idle for a value higher than 20.

  5. Idle session timeout for Microsoft 365 - Microsoft 365 admin

    learn.microsoft.com/en-us/microsoft-365/admin/manage/idle-session-timeout-web-apps

    In the Microsoft 365 admin center, select Org Settings-> Security & privacy tab and select Idle session timeout. On the Idle Session Timeout select the toggle to turn it on. You can choose a default setting or choose your own custom time.

  6. How to change the session timeout in PHP? - GeeksforGeeks

    www.geeksforgeeks.org/how-to-change-the-session-timeout-in-php

    To destroy the certain session, the following command should be used: session_unset(); To destroy the complete session, the following command should be used: session_destroy(); Changing session timeout: Considering there’s a login page with the ‘Login’ button in an HTML form.

  7. Set the session inactivity timeout - Finance & Operations |...

    learn.microsoft.com/.../fin-ops-core/dev-itpro/sysadmin/session-idle-timeout

    The session inactivity timeout setting represents the amount of time a user can be inactive before the user's session times out and closes. It only affects user browser sessions. You can set the values from 5 minutes to 60 minutes. This function has a default value of 30 minutes.

  8. Preventing Session Timeouts in C# ASP .NET Web Applications

    www.primaryobjects.com/2008/01/29/preventing-session-timeouts-in-c-asp-net-web...

    This article describes a solution for web applications which require a session to never timeout or for those who have a session timeout occurring before the value set in the web.config. The solution is invisible and seamless and has been tested in Internet Explorer, Firefox, and Safari.

  9. Full Tutorial: Top 2 Ways to Keep RDP Session Alive - AnyViewer

    www.anyviewer.com/how-to/keep-rdp-session-alive-0007.html

    Here are two easy ways to help you keep RDP session alive. Or you can switch to a third-party remote desktop software with stable performance. Way 1. Adjust the time limit in the Group Policy Editor. Typically, the session timeout is 15 minutes but it could depend on your security policy.

  10. Disable ASP session state in ASP.NET - ASP.NET

    learn.microsoft.com/.../webapps/aspnet/development/disable-asp-session-state

    When session state is disabled, user data is not tracked, and you cannot store information in the Session object or use the Session_OnStart or Session_OnEnd events. By disabling session state, you can increase performance if the application or the page does not require session state to enable it.

  11. Prevent Session Timeout in ASP.NET - CodeProject

    www.codeproject.com/Articles/9607/Prevent-Session-Timeout-in-ASP-NET

    Simple code to prevent a sesison from timing out while a user enters data or edits HTML etc. Introduction.