HttpSessionState.Mode 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得目前的工作階段狀態模式。
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>
備註
如需如何設定 StateServer 伺服器或 SQLServer 會話狀態記憶體的資訊,請參閱 ASP.NET 工作階段狀態概觀。