Click or drag to resize
KaxNavigationBarPersistStateInCookie Property
Gets or sets a value indicating whether the control would persists its state between pages (expanded and selected items).

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public bool PersistStateInCookie { get; set; }

Property Value

Type: Boolean
true if the control would persist its state; false otherwise. The default value is false.
Remarks

Use the PersistStateInCookie property to make KaxNavigationBar persist its state between pages. This feature requires browser cookies to be enabled. Also the ClientID and ID properties of the KaxNavigationBar control must be the same in all pages accessible via the control (and containing it).

Page1.aspx:

<kaxP:KaxNavigationBar ID="KaxNavigationBar1" > ... </kaxP:KaxNavigationBar>

Page2.aspx

<kaxP:KaxNavigationBar ID="KaxNavigationBar1" > ... </kaxP:KaxNavigationBar>

See Also