Udostępnij za pośrednictwem


SiteMap.CurrentNode Właściwość

Definicja

Pobiera kontrolkę reprezentującą SiteMapNode aktualnie żądaną stronę.

public:
 static property System::Web::SiteMapNode ^ CurrentNode { System::Web::SiteMapNode ^ get(); };
public static System.Web.SiteMapNode CurrentNode { get; }
static member CurrentNode : System.Web.SiteMapNode
Public Shared ReadOnly Property CurrentNode As SiteMapNode

Wartość właściwości

SiteMapNode Wystąpienie reprezentujące aktualnie żądaną stronę; w przeciwnym razie , nulljeśli w informacjach o mapie witryny nie istnieje żaden reprezentatywny węzeł.

Wyjątki

Funkcja mapy witryny nie jest włączona.

Domyślny dostawca określony w konfiguracji nie istnieje.

Ta funkcja jest obsługiwana tylko w przypadku uruchamiania w przypadku niskiego zaufania lub wyższego poziomu.

Przykłady

W poniższym przykładzie kodu pokazano, jak za pomocą CurrentNode właściwości pobrać SiteMapNode obiekt reprezentujący bieżącą stronę.

<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
    // Examine the CurrentNode, and navigate the SiteMap relative to it.
    Response.Write(SiteMap.CurrentNode.Title + "<br />");
    Response.Write("<font COLOR='red'>" + SiteMap.CurrentNode.Url + "</font><br />");

    // What nodes are children of the CurrentNode?
    if (SiteMap.CurrentNode.HasChildNodes) {
        IEnumerator childNodesEnumerator = SiteMap.CurrentNode.ChildNodes.GetEnumerator();
        while (childNodesEnumerator.MoveNext()) {
            // Prints the Title of each node.
            Response.Write(childNodesEnumerator.Current.ToString() + "<br />");
        }
    }
    Response.Write("<hr />");

    // Examine the RootNode, and navigate the SiteMap relative to it.
    Response.Write(SiteMap.RootNode.Title + "<br />");
    Response.Write(SiteMap.RootNode.Url + "<br />");

    // What nodes are children of the RootNode?
    if (SiteMap.RootNode.HasChildNodes) {
        IEnumerator rootNodesChildrenEnumerator = SiteMap.RootNode.ChildNodes.GetEnumerator();
        while (rootNodesChildrenEnumerator.MoveNext()) {
            // Prints the Title of each node.
            Response.Write(rootNodesChildrenEnumerator.Current.ToString() + "<br />");
        }
    }
}
</script>
<script runat="server">

Private Sub Page_Load(sender As Object, e As EventArgs)

    ' Examine the CurrentNode, and navigate the SiteMap relative to it.
    Response.Write(SiteMap.CurrentNode.Title & "<br />")
    Response.Write("<font COLOR='red'>" & SiteMap.CurrentNode.Url & "</font><br />")

    ' What nodes are children of the CurrentNode?
    If (SiteMap.CurrentNode.HasChildNodes) Then
        Dim ChildNodesEnumerator As IEnumerator = SiteMap.CurrentNode.ChildNodes.GetEnumerator()
        While (ChildNodesEnumerator.MoveNext())
            ' Prints the Title of each node.
            Response.Write(ChildNodesEnumerator.Current.ToString() & "<br />")
        End While
    End If
    Response.Write("<hr />")

    ' Examine the RootNode, and navigate the SiteMap relative to it.
    Response.Write(SiteMap.RootNode.Title & "<br />")
    Response.Write(SiteMap.RootNode.Url & "<br />")

    ' What nodes are children of the RootNode?
    If (SiteMap.RootNode.HasChildNodes) Then
        Dim RootNodesChildrenEnumerator As IEnumerator = SiteMap.RootNode.ChildNodes.GetEnumerator()
        While (RootNodesChildrenEnumerator.MoveNext())
            ' Prints the Title of each node.
            Response.Write(RootNodesChildrenEnumerator.Current.ToString() & "<br />")
        End While
    End If

End Sub ' Page_Load
</script>

Uwagi

Klasa SiteMap pobiera CurrentNode właściwość, żądając jej od dostawcy.

Jeśli nie istnieje reprezentatywny węzeł dla strony w informacjach o mapie witryny lub jeśli jest włączone przycinanie zabezpieczeń, a węzeł nie może zostać zwrócony dla bieżącego użytkownika, null zostanie zwrócony.

Zdarzenie SiteMapResolve jest zgłaszane przez domyślnego dostawcę mapy witryny, jeśli istnieje co najmniej jedna subskrypcja.

Jeśli zaimplementujesz własny SiteMapProvider obiekt, możesz utworzyć własny mechanizm, aby znaleźć i pobrać obiekt CurrentNode. Jeśli jednak rozszerzysz klasę i użyjesz schematu StaticSiteMapProvider opartego na adresach URL w celu zidentyfikowania stron, możesz zastąpić metodę FindSiteMapNode .

Dotyczy

Zobacz też