Udostępnij za pośrednictwem


PagesSection.Theme Właściwość

Definicja

Pobiera lub ustawia nazwę motywu strony ASP.NET.

public:
 property System::String ^ Theme { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("theme", DefaultValue="")]
public string Theme { get; set; }
[<System.Configuration.ConfigurationProperty("theme", DefaultValue="")>]
member this.Theme : string with get, set
Public Property Theme As String

Wartość właściwości

Nazwa motywu strony ASP.NET.

Atrybuty

Przykłady

W poniższym przykładzie kodu pokazano, jak używać Theme właściwości .

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

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

' Set the Theme property to "MyCustomTheme".
pagesSection.Theme = "MyCustomTheme"

Dotyczy

Zobacz też