本文介绍了我如何在ASP 2.0中增加12小时的会话超时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
默认超时为20 minutes
,但是我想增加session time to 8 hour
,因为用户正在将信息输入到Web表单中,因此会话超时期将结束,并且他们将丢失所有已完成的工作.
由于lost the information..
,每次他们不得不一次又一次地登录应用程序
问候Prince Antony G
The Default time out is 20 minutes
, but I would like to increase session time to 8 hour
because the user is entering information into a web form, the session time-out period will end and they lose all the work they have done.
Every time they have to logged into application again and again due to that lost the information..
RegardsPrince Antony G
推荐答案
<configuration>
<system.web>
<sessionstate timeout="20" />
</system.web>
</configuration>
这篇关于我如何在ASP 2.0中增加12小时的会话超时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!