Bagikan melalui


PagesSection.EnableViewState Properti

Definisi

Mendapatkan atau menetapkan nilai yang menunjukkan apakah status tampilan diaktifkan atau dinonaktifkan.

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

Nilai Properti

true jika status tampilan diaktifkan; false jika status tampilan dinonaktifkan. Default adalah true.

Atribut

Contoh

Contoh kode berikut menunjukkan cara menggunakan EnableViewState properti .

// 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

Berlaku untuk

Lihat juga