1
  • 我们已将经典的 asp 网站迁移到 Azure 网站(共享模式单实例)。
  • 我们注意到用户会话在 20 分钟内超时,并且以编程方式设置 session.timeout = 120 不起作用。

  • 任何其他可能有助于共享 Azure 网站上的经典 asp 页面的设置?

  • 我也尝试在 web.config (sessionState timeout="120") 中设置会话超时,但对于经典的 asp 页面没有任何运气。任何帮助表示赞赏。谢谢你。

    <system.web>
     <sessionState timeout="120"/> 
    </system.web>
    

4

1 回答 1

0

The web.config setting only affects ASP.NET. For Classic ASP you can globally set the timeout in the global.asa file, like this:

<script language="VBScript" runat="Server">
    Sub Session_OnStart
        Session.Timeout = 120
    End Sub
</script> 
于 2013-04-12T21:29:35.640 回答