5

我搜索了但我没有找到这个问题的任何具体答案。在会话到期之前,我如何在服务器中获得价值?我的会话设置:

//超时,例如 10 分钟。

<authentication mode="Forms"> <forms name=".ASPXAUTH_External" loginUrl="Authentication/Unauthorized.aspx" protection="All" timeout="10" path="/" slidingExpiration="true" defaultUrl="~/Pages/home.aspx" cookieless="UseDeviceProfile" enableCrossAppRedirects="false"/>
</authentication>
<sessionState mode="InProc" timeout="10">
</sessionState>

我得到初始值(它将得到 10*60 = 600 秒):

SessionStateSection sessionSection = (SessionStateSection)WebConfigurationManager.GetSection("system.web/sessionState");
countdown.Text = sessionSection.Timeout.TotalSeconds.ToString();

但是当会话时间剩下不到一半并且用户执行一些操作时。我得到初始值 600,但它与剩余会话时间不相等,因为“slidingExpiration”会增加一些时间(我不知道多少),但不会将会话剩余时间重置为开始 10 分钟点。

如何获得到期前的剩余会话时间?

4

3 回答 3

2

我发现会话到期的时间我可以这样:

DateTime dateNow = DateTime.Now;
if (HttpContext.Current.User.Identity is FormsIdentity)
{
    HttpCookie authCookie = this.Context.Request.Cookies[FormsAuthentication.FormsCookieName];
    FormsAuthenticationTicket authTicket = FormsAuthentication.Decrypt(authCookie.Value);
    double leftSeconds = (authTicket.Expiration - dateNow).TotalSeconds;
    // Control in MasterPage, where I setting value ant then taking for JavaSript to CountDown message
    countdown.Text = leftSeconds > 0 ? leftSeconds.ToString() : "0";
} 
于 2013-02-25T09:27:08.473 回答
1

遵循 Drasius 方法,我编写了一个 VB 解决方案,如下所示。

在 Session_Start 上的 global.asa 中,我有——

    Session("sessStart") = DateTime.Now
    Session("TO") = Session.Timeout

在页面主文件中我有 -

    Dim timemsg As String = ""
    Dim sstrt As DateTime = Session("sessStart")
    timemsg = "Strt=" & sstrt.ToShortTimeString() & " TO=" & Session("TO") & "<br />"
    Dim datenow = DateTime.Now
    Dim cusrn = HttpContext.Current.User.Identity.Name
    If cusrn <> "" Then
        Dim authcookie As System.Web.HttpCookie
        authcookie = HttpContext.Current.Request.Cookies(FormsAuthentication.FormsCookieName)
        Dim authTicket As System.Web.Security.FormsAuthenticationTicket
        authTicket = FormsAuthentication.Decrypt(authcookie.Value)
        Dim leftminutes = (authTicket.Expiration - datenow).TotalMinutes
        timemsg &= "Remain: "
        If leftminutes > 0 Then
            timemsg &= leftminutes.ToString("F1") & " mins"
        Else
            timemsg &= "0 mins"
        End If
    End If
    lblShowTime.Text = timemsg

这很有效——当我刷新页面时,我会减少超时时间。但是,剩余的初始时间总是显示 30 分钟,即使我的 web.config 设置如下:

<sessionState mode="InProc" timeout="20" />

所以我不太确定这种方法是否给出了一个与实际会话超时真正同步的超时。

于 2014-10-19T20:31:42.087 回答
0

如果你是服务器端,它会被重置(在任何回发时),所以如果你有 10 分钟,那就是 10 分钟。客户端您可以在最后一次访问服务器后设置一个计时器,例如,您可以设置一个 8 分钟的计时器,然后警告会话将在 2 分钟后到期...当然您希望显示剩余的实际时间,而不是静态的信息。

查看 setTimeout 方法。 此链接包含有关您可能使用的一些 javascript 计时方法的信息。

于 2013-02-22T16:06:26.390 回答