Skip to main content
.NET Framework Class Library
ControlViewStateIgnoresCase Property

Gets a value that indicates whether the StateBag object is case-insensitive.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)
Syntax
<[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_0_0_0%](False)> _
Protected Overridable ReadOnly Property ViewStateIgnoresCase As [%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_0_0_1%]
[[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_1_0_0%](false)]
protected virtual [%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_1_0_1%] ViewStateIgnoresCase { get; }
[[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_2_0_0%](false)]
protected:
virtual property [%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_2_0_1%] ViewStateIgnoresCase {
	[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_2_0_2%] get ();
}
[<[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_3_0_0%](false)>]
abstract ViewStateIgnoresCase : [%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_3_0_1%] with get
[<[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_3_0_2%](false)>]
override ViewStateIgnoresCase : [%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_3_0_3%] with get

Property Value

Type: SystemBoolean
true if the StateBag instance is case-insensitive; otherwise, false. The default is false.
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.

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. 
Overrides Protected ReadOnly Property ViewStateIgnoresCase As Boolean 
   Get 
      Return True 
   End Get 
End Property
// 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; 
        }
}
Version Information

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0
Platforms

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.