Control.ViewStateIgnoresCase Property    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the StateBag object is case-insensitive.
protected:
 virtual property bool ViewStateIgnoresCase { bool get(); };[System.ComponentModel.Browsable(false)]
protected virtual bool ViewStateIgnoresCase { get; }[<System.ComponentModel.Browsable(false)>]
member this.ViewStateIgnoresCase : boolProtected Overridable ReadOnly Property ViewStateIgnoresCase As BooleanProperty Value
true if the StateBag instance is case-insensitive; otherwise, false. The default is false.
- Attributes
Examples
The following example demonstrates how to override the ViewStateIgnoresCase property to return true.
// Override the ViewStateIgnoresCase property to allow the same
// entries with different casing to be stored in the control's
// ViewState property.
protected override bool ViewStateIgnoresCase
{
        get
        { 
                return true; 
        }
}
' Override the ViewStateIgnoresCase property to allow the same
' entries with different casing to be stored in the control's
' ViewState property.
Overrides Protected ReadOnly Property ViewStateIgnoresCase As Boolean
   Get
      Return True
   End Get
End Property
Remarks
Override this method if you create a custom server control that saves its view state without taking case into account. When you do so multiple objects with the same key, but with different casing, can be stored in the StateBag associated with the ViewState property.