StateBag::Item Property (String^)
.NET Framework (current version)
Gets or sets the value of an item stored in the StateBag object.
Assembly: System.Web (in System.Web.dll)
public: property Object^ default[ String^ key ] { Object^ get(String^ key); void set(String^ key, Object^ value); }
Parameters
- key
-
Type:
System::String^
The key for the item.
Using this member is the simplest way to save and retrieve view-state values for a control or a page.
If an item is not already stored in the StateBag object when you set this property, its key/value pair is added to the collection. If you set this property to null before the TrackViewState method is called on an item, it is removed from the StateBag object. Otherwise, when you set this property to null the key is saved to allow tracking of the item's view state.
.NET Framework
Available since 1.1
Available since 1.1
Show: