SiteMap.SiteMapResolve Ereignis

Definition

Tritt ein, wenn auf die CurrentNode-Eigenschaft zugegriffen wird.

public:
 static event System::Web::SiteMapResolveEventHandler ^ SiteMapResolve;
public static event System.Web.SiteMapResolveEventHandler SiteMapResolve;
member this.SiteMapResolve : System.Web.SiteMapResolveEventHandler 
Public Shared Custom Event SiteMapResolve As SiteMapResolveEventHandler 

Ereignistyp

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie das SiteMapResolve Ereignis auf einer ASP.NET-Webseite behandelt wird, um die Ziel-URLs zu ändern, die von einem Websitenavigationssteuerelement angezeigt werden, z. B. das SiteMapPath -Steuerelement. In diesem Beispiel ist die aktuelle Seite eine Beitragsseite in einem Online-Bulletinboard oder Forum. Um eine aussagekräftigere Websitenavigation zu rendern, werden die URLs der Knoten, die vom Navigationssteuerelement angezeigt werden, mit kontextrelevanten Abfragezeichenfolgen angefügt.

Hinweis

Die ASP.NET Websitenavigationsinfrastruktur schützt vor unendlicher Rekursion, die einen Schutz bietet und das Sicherheitsrisiko minimiert, das mit dem Zugriff auf die CurrentNode Eigenschaft aus der SiteMapResolveEventHandler Klasse verbunden ist.

Der folgende Code gehört in die Datei Global.asax. Der Ereignishandler wird nur einmal für die Anwendung angefügt. Der Code erkennt, ob die Seite die ISiteMapResolver Schnittstelle implementiert. Wenn die Schnittstelle implementiert ist, wird die ExpandForumPaths Funktion aufgerufen.

private void Page_Load(object sender, EventArgs e)
{
    // The ExpandForumPaths method is called to handle
    // the SiteMapResolve event.
    SiteMap.SiteMapResolve +=
      new SiteMapResolveEventHandler(this.ExpandForumPaths);
}

private SiteMapNode ExpandForumPaths(Object sender, SiteMapResolveEventArgs e)
{
    // The current node represents a Post page in a bulletin board forum.
    // Clone the current node and all of its relevant parents. This
    // returns a site map node that a developer can then
    // walk, modifying each node.Url property in turn.
    // Since the cloned nodes are separate from the underlying
    // site navigation structure, the fixups that are made do not
    // effect the overall site navigation structure.
    SiteMapNode currentNode = SiteMap.CurrentNode.Clone(true);
    SiteMapNode tempNode = currentNode;

    // Obtain the recent IDs.
    int forumGroupID = GetMostRecentForumGroupID();
    int forumID = GetMostRecentForumID(forumGroupID);
    int postID = GetMostRecentPostID(forumID);

    // The current node, and its parents, can be modified to include
    // dynamic querystring information relevant to the currently
    // executing request.
    if (0 != postID)
    {
        tempNode.Url = tempNode.Url + "?PostID=" + postID.ToString();
    }

    if ((null != (tempNode = tempNode.ParentNode)) &&
        (0 != forumID))
    {
        tempNode.Url = tempNode.Url + "?ForumID=" + forumID.ToString();
    }

    if ((null != (tempNode = tempNode.ParentNode)) &&
        (0 != forumGroupID))
    {
        tempNode.Url = tempNode.Url + "?ForumGroupID=" + forumGroupID.ToString();
    }

    return currentNode;
}
Private Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)

    ' The ExpandForumPaths method is called to handle
    ' the SiteMapResolve event.
    AddHandler SiteMap.SiteMapResolve, AddressOf Me.ExpandForumPaths

End Sub

Private Function ExpandForumPaths(ByVal sender As Object, ByVal e As SiteMapResolveEventArgs) As SiteMapNode
    ' The current node represents a Post page in a bulletin board forum.
    ' Clone the current node and all of its relevant parents. This
    ' returns a site map node that a developer can then
    ' walk, modifying each node.Url property in turn.
    ' Since the cloned nodes are separate from the underlying
    ' site navigation structure, the fixups that are made do not
    ' effect the overall site navigation structure.
    Dim currentNode As SiteMapNode = SiteMap.CurrentNode.Clone(True)
    Dim tempNode As SiteMapNode = currentNode

    ' Obtain the recent IDs.
    Dim forumGroupID As Integer = GetMostRecentForumGroupID()
    Dim forumID As Integer = GetMostRecentForumID(forumGroupID)
    Dim postID As Integer = GetMostRecentPostID(forumID)

    ' The current node, and its parents, can be modified to include
    ' dynamic querystring information relevant to the currently
    ' executing request.
    If Not (0 = postID) Then
        tempNode.Url = tempNode.Url & "?PostID=" & postID.ToString()
    End If

    tempNode = tempNode.ParentNode
    If Not (0 = forumID) And Not (tempNode Is Nothing) Then
        tempNode.Url = tempNode.Url & "?ForumID=" & forumID.ToString()
    End If

    tempNode = tempNode.ParentNode
    If Not (0 = ForumGroupID) And Not (tempNode Is Nothing) Then
        tempNode.Url = tempNode.Url & "?ForumGroupID=" & forumGroupID.ToString()
    End If

    Return currentNode

End Function

Der folgende Code definiert eine separate Schnittstelle. (In einem Websiteprojekt können Sie diesen Code in den Ordner App_Code einfügen.) Die ISiteMapResolver -Schnittstelle definiert die ExpandForumPaths -Methode.

// These methods are just placeholders for the example.
// One option is to use the HttpContext or e.Context object
// to obtain the ID.
private int GetMostRecentForumGroupID()
{
    return 24;
}

private int GetMostRecentForumID(int forumGroupId)
{
    return 128;
}

private int GetMostRecentPostID(int forumId)
{
    return 317424;
}
' These methods are just placeholders for the example.
' One option is to use the HttpContext or e.Context object
' to obtain the ID.
Private Function GetMostRecentForumGroupID() As Integer
    Return 24
End Function

Private Function GetMostRecentForumID(ByVal forumGroupId As Integer) As Integer
    Return 128
End Function

Private Function GetMostRecentPostID(ByVal forumId As Integer) As Integer
    Return 317424
End Function

Der folgende Code gehört zu der Seite, die mindestens drei Knoten tief in der Siteübersichtsstruktur ist. Die Seite implementiert die ISiteMapResolver -Schnittstelle, die den Aufruf der ExpandForumPaths -Methode ermöglicht.

<asp:SiteMapPath
id="SiteMapPath1"
runat="server"
RenderCurrentNodeAsLink="true" />
<asp:SiteMapPath
id="SiteMapPath1"
runat="server"
RenderCurrentNodeAsLink="true" />

Hinweise

Abonnenten fügen ein SiteMapResolveEventHandler Objekt an das statische SiteMapResolve Ereignis an, um Benachrichtigungen zu erhalten, wenn auf die CurrentNode Eigenschaft zugegriffen wird. Dadurch kann der Benutzer benutzerdefinierte Logik implementieren, wenn er eine SiteMapNode Darstellung der aktuell ausgeführten Seite erstellt, ohne dass eine benutzerdefinierte Anbieterimplementierung erforderlich ist.

Wenn Sie das SiteMapResolve Ereignis abonnieren, abonnieren Sie das SiteMapResolve Ereignis auch im Standardwebsiteübersichtsanbieter.

Gilt für:

Weitere Informationen