连续使用app时自动注销

连续使用app时自动注销

本文介绍了连续使用app时自动注销的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我的应用程序会在用户连续使用时自动注销。





web.config:



my application automatically log-out when user using it continuously .


web.config:

<authentication mode="Forms">
     <forms loginUrl="Authentication.aspx" timeout="2880" />
   </authentication>
     <sessionState mode="InProc" timeout="60" cookieless="false"/>







是什么原因? plz help ...




what is the reason? plz help...

推荐答案

从上面链接:



在某些情况下,当您增加会话超时时,则运行Web应用程序,会话仍将过期。可能的原因很少。



请注意,会话超时应小于应用程序池空闲超时,因此如果增加会话超时,则还必须增加应用程序空闲超时。否则,申请将被回收。如果应用程序被回收,会话将自动过期。


In some cases, when you increase session timeout, then run web application, session will still expire. There could be few possible reasons for this.

Notice that session timeout should be less than Application pool idle timeout, so if you increase session timeout, you have to increase application idle timeout too. Otherwise, application will get recycled. If application is recycled, sessions will expire automatically.

[ ^ ](这将喝掉服务器带宽)

How To Keep ASP.NET Session Alive[^](This'll drink the server bandwidth)



这篇关于连续使用app时自动注销的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-07 00:08