FileManagerSettingsCookies.Version Property
Specifies the cookie’s version.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Property Value
Type | Default | Description |
---|---|---|
String | String.Empty | The cookie’s version. |
Property Paths
You can access this nested property as listed below:
Library | Object Type | Path to Version |
---|---|---|
ASP.NET MVC Extensions | FileManagerSettings |
|
ASP.NET Web Forms Controls | ASPxFileManager |
|
Remarks
Use the Version property to specify a custom version (in string format) for the current cookies settings. This property allows you to control the life span of the cookie that contains the control’s state. For example, you can change the Version property’s value if you significantly modify your web site (or a site page that contains the control), and you don’t want to load the control’s state from previously saved cookies.
<dx:ASPxFileManager ID="fileManager" ...>
...
<SettingsCookies StoreSorting="true" Version="1" />
</dx:ASPxFileManager>
See Also