SessionStateSection::RegenerateExpiredSessionId Property
.NET Framework (current version)
Gets or sets a value indicating whether the session Id will be re-issued when an expired session ID is specified by the client.
Assembly: System.Web (in System.Web.dll)
public: [ConfigurationPropertyAttribute("regenerateExpiredSessionId", DefaultValue = true)] property bool RegenerateExpiredSessionId { bool get(); void set(bool value); }
Property Value
Type: System::Booleantrue if the session ID must be regenerated; otherwise, false. The default value is true.
By default, only cookieless URLs are reissued when RegenerateExpiredSessionId is enabled.
The following code example demonstrates how to get the RegenerateExpiredSessionId property. Refer to the code example in the SessionStateSection class topic to learn how to access the SessionStateSection object.
.NET Framework
Available since 2.0
Available since 2.0
Show: