共用方式為


PagesSection.SmartNavigation 屬性

定義

取得或設定值,指出是否啟用智慧巡覽。

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

屬性值

如果已啟用智慧型巡覽則為 true;否則為 false。 預設值是 false

屬性

範例

下列程式碼範例示範如何使用 SmartNavigation 屬性。

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

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

' Set the SmartNavigation property to true.
pagesSection.SmartNavigation = True

備註

注意

智慧型導覽需要Microsoft Internet Explorer 5.5 或更高版本。

適用於