Aracılığıyla paylaş


PagesSection.EnableViewState Özellik

Tanım

Görünüm durumunun etkinleştirildiğini veya devre dışı bırakıldığını belirten bir değer alır veya ayarlar.

public:
 property bool EnableViewState { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enableViewState", DefaultValue=true)]
public bool EnableViewState { get; set; }
[<System.Configuration.ConfigurationProperty("enableViewState", DefaultValue=true)>]
member this.EnableViewState : bool with get, set
Public Property EnableViewState As Boolean

Özellik Değeri

true görünüm durumu etkinse; false görünüm durumu devre dışıysa. Varsayılan değer: true.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğinin EnableViewState nasıl kullanılacağını gösterir.

// Get the current EnableViewState property value.
Console.WriteLine(
    "Current EnableViewState value: '{0}'",
    pagesSection.EnableViewState);

// Set the EnableViewState property to false.
pagesSection.EnableViewState = false;
' Get the current EnableViewState property value.
Console.WriteLine( _
    "Current EnableViewState value: '{0}'", _
    pagesSection.EnableViewState)

' Set the EnableViewState property to false.
pagesSection.EnableViewState = False

Şunlara uygulanır

Ayrıca bkz.