This question is locked. New answers and comments are not allowed.
My sitemap is registered in the global asax and renders properly the first time. However if a change is made to the sitemap it is not reflected/refreshed in the menu?
Global.asax
| protected void Application_Start() |
| { |
| AreaRegistration.RegisterAllAreas(); |
| RegisterRoutes(RouteTable.Routes); |
| SiteMapManager.SiteMaps.Register<XmlSiteMap>("Web", sitmap => sitmap.LoadFrom("~/Web.sitemap")); |
| } |
site.master
| <%= Html.Telerik().Menu() |
| .Name("Web") |
| .BindTo("Web") |
| .Orientation(MenuOrientation.Vertical) %> |
| <% Html.Telerik().ScriptRegistrar().Render(); %> |