zoukankan      html  css  js  c++  java
  • Session之Config配置

    <sessionState mode="Off|InProc|StateServer|SQLServer"
    
    cookieless="true|false"
    
    timeout="number of minutes"
    
    stateConnectionString="tcpip=server:port"
    
    sqlConnectionString="sql connection string"
    
    stateNetworkTimeout="number of seconds"
    
    />

    mode 设置将Session信息存储到哪里:

        — Off 设置为不使用Session功能;

        — InProc 设置为将Session存储在进程内,就是ASP中的存储方式,这是默认值;

        — StateServer 设置为将Session存储在独立的状态服务中;

        — SQLServer 设置将Session存储在SQL Server中。

        cookieless 设置客户端的Session信息存储到哪里:

        — ture 使用Cookieless模式;这时客户端的Session信息就不再使用Cookie存储了,而是将其通过URL存储。比如网址为http://localhost/MyTestApplication/(ulqsek45heu3ic2a5zgdl245)/default.aspx

        — false 使用Cookie模式,这是默认值。

       timeout 设置经过多少分钟后服务器自动放弃Session信息。默认为20分钟。

       stateConnectionString 设置将Session信息存储在状态服务中时使用的服务器名称和端口号,例如:"tcpip=127.0.0.1:42424”。当mode的值是StateServer是,这个属性是必需的。(42424是默认端口)。

       sqlConnectionString 设置与SQL Server连接时的连接字符串。例如"data source=localhost;Integrated Security=SSPI;Initial Catalog=northwind"。当mode的值是SQLServer时,这个属性是必需的。

       stateNetworkTimeout 设置当使用StateServer模式存储Session状态时,经过多少秒空闲后,断开Web服务器与存储状态信息的服务器的TCP/IP连接的。默认值是10秒钟。

  • 相关阅读:
    Vue学习笔记(一)
    Visual Studio Code (vscode)自定义用户代码段快速打出for循环等
    2019.5.5 JS相关
    项目搭建 相关
    2019.4.26 响应式布局
    android The content of the adapter has changed but ListView did not receive a notification 错误的解决方案
    ListView 加载数据时 触摸报错
    android 代码中使用textAppearance
    c/c++ 指针函数 和 函数指针
    c/c++ 指针数组 和 数组指针
  • 原文地址:https://www.cnblogs.com/ingstyle/p/6273426.html
Copyright © 2011-2022 走看看