SiteMapProvider.SiteMapResolve Event
.NET Framework 3.0
Occurs when the CurrentNode property is called.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: event SiteMapResolveEventHandler^ SiteMapResolve { void add (SiteMapResolveEventHandler^ value); void remove (SiteMapResolveEventHandler^ value); }
/** @event */ public void add_SiteMapResolve (SiteMapResolveEventHandler value) /** @event */ public void remove_SiteMapResolve (SiteMapResolveEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
You can create a SiteMapNode representation of the currently requested page without implementing a custom site map provider by subscribing to the SiteMapResolve event. Subscribers attach a SiteMapResolveEventHandler object to receive notification when the CurrentNode property is called and can return a custom SiteMapNode object instead of the default one that is returned by the CurrentNode property.
For more information about handling events, see Consuming Events.
Community Additions
ADD
Show: