HttpSessionState.Mode 属性

定义

获取当前会话状态模式。

public:
 property System::Web::SessionState::SessionStateMode Mode { System::Web::SessionState::SessionStateMode get(); };
public System.Web.SessionState.SessionStateMode Mode { get; }
member this.Mode : System.Web.SessionState.SessionStateMode
Public ReadOnly Property Mode As SessionStateMode

属性值

SessionStateMode 值之一。

示例

下面的代码示例在 mode Web.config 文件中将会话属性设置为 SQLServer 。 对于 SQL Server 会话模式, sqlConnectionString 还需要 属性。

<configuration>
  <system.web>
    <sessionState
      mode="SQLServer"
      sqlConnectionString="Data Source=localhost;Integrated Security=SSPI"
      cookieless="true"
      timeout="30" />
  </system.web>
</configuration>

注解

有关如何为 StateServerSQLServer 会话状态存储配置服务器的信息,请参阅 ASP.NET 会话状态概述

适用于

另请参阅