本文介绍了会话变量在asp.net应用程序超时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的web应用程序,我使用了一些会话变量,这是当我登录设置:

例如。 会议(USER_ID)=读卡器(user_ID的)

我使用这个通过我的应用程序。

在会话变量超时,这个连接到数据库会议(user_ID的)需要一些查询。

当主要抛出错误

我如何设置我的会话变量,这样一旦被超时去到登录页面或至少是如何增加的时间长度有哪些?


解决方案

我猜你使用表单验证。这里的关键是要确保会话不会在你的窗体身份验证过期。

我在这个答案写到这里这个

For example:

Configure your Forms Authentication - this sets the timeout to 60 minutes:

<authentication mode="Forms">
    <forms defaultUrl="~/Default.aspx"
        loginUrl="~/Login.aspx"
        slidingExpiration="true"
        timeout="60" />
</authentication>

Extend Session expiry to a longer time:

<sessionState
    mode="InProc"
    cookieless="false"
    timeout="70"/>

In your Login.aspx code behind you could also do a Session.Clear(); to remove stale session data before assigning session values.

这篇关于会话变量在asp.net应用程序超时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 03:34