SessionStateSection.StateConnectionString Property

Definition

Gets or sets the state server connection string.

public:
 property System::String ^ StateConnectionString { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("stateConnectionString", DefaultValue="tcpip=loopback:42424")]
public string StateConnectionString { get; set; }
[<System.Configuration.ConfigurationProperty("stateConnectionString", DefaultValue="tcpip=loopback:42424")>]
member this.StateConnectionString : string with get, set
Public Property StateConnectionString As String

Property Value

The state server connection string.

Attributes

Examples

The following code example demonstrates how to get the StateConnectionString property. Refer to the code example in the SessionStateSection class topic to learn how to access the SessionStateSection object.

// Display the current StateConnectionString property value.
Console.WriteLine("StateConnectionString: {0}",
  sessionStateSection.StateConnectionString);
' Display the current StateConnectionString property value.
Console.WriteLine("StateConnectionString: {0}", _
  sessionStateSection.StateConnectionString)

Remarks

This property specifies the server name and the port when the session state is stored remotely. The stateConnectionString attribute is required when the Mode is set to StateServer.

Note

Make sure the ASP.NET state service is running on the remote server that stores the session-state information. This service is installed with ASP.NET and is located by default at [drive:]\WINDOWS\Microsoft.NET\Framework\VersionNumber\aspnet_state.exe.

Applies to