我正在使用 MVC3、C#、Razor、mvcSiteMapProvider V4。
我正在使用“Mvc.sitemap”
<mvcSiteMapNode title="Reports" controller="Report" action="Index" preservedRouteParameters="ClientId" route="Report">
<mvcSiteMapNode key="Report_Section" title="Sections" controller="Section" action="FilterByReport" preservedRouteParameters="ClientId,ReportId" route="Report_Section">
<mvcSiteMapNode key="Background" title="Background" controller="Wizard" action="Index" preservedRouteParameters="ClientId,ReportID,SectionID,SectionName" route="Background"/>
“Global.asax”自定义路由如下所示:
routes.MapRoute("Report", "Report/{ClientId}", new { controller = "Report", action = "Index", ClientId = UrlParameter.Optional });
routes.MapRoute("Report_Section", "Report/{ClientId}/Section/{ReportId}", new { controller = "Section", action = "FilterByReport", ReportId = UrlParameter.Optional });
routes.MapRoute("Background", "Report/{ReportID}/SectionID/{SectionID}/SectionName/{SectionName}", new { controller = "Wizard", action = "Index", ReportID = UrlParameter.Optional, SectionID = UrlParameter.Optional, SectionName = UrlParameter.Optional });
“Report”和“Report_Section”路由工作正常。但是,当我进入“后台”路由时,我会丢失 mvcSiteMap BreadCrumb URL 中的“Report_Section”和“Report”路由的所有路由结构。相反,我得到一个 GUID,即:
http://localhost/7ebe9bb9-a663-43fd-9fb1-865866be12b9
我相信这可能是自动生成的 XML 节点密钥。但是,它在单击时会产生 404。
我应该得到类似的东西:
报告
http://localhost/Report/10
部分
http://localhost/Report/10/Section/100
有什么想法可能导致这种情况吗?
谢谢。