我希望能够显示当前节点的父节点的标题。
网站地图:
<mvcSiteMapNode title="Main Site Tile" controller="Home" action="Index">
<mvcSiteMapNode title="Some site section" controller="Section" action="Index">
<mvcSiteMapNode title="Some page" controller="Section" action="Page1" />
<mvcSiteMapNode title="Some other page" controller="Section" action="Page2" />
</mvcSiteMapNode>
</mvcSiteMapNode>
因此,在“Page1”上,我可以使用以下方法显示标题(某些页面):
Html.MvcSiteMap().SiteMapTitle()
伟大的。但是,我还想在我的 _Layout 页面中显示父节点(某些站点部分)的标题,因此如果我正在查看“Page1”或“Page2”(或者实际上嵌套在其中的任何视图),这将看起来相同。
这可能吗?