MvcSiteMapProvider にルート サブノードを表示する方法はありますか? メニューを次のように表示できます。
|ホーム| |概要| |その他|
|アイテム1|
|アイテム2|
Item1とItem2が index(home) サブ要素のように表示されるようにします。
ここに私のサイトマップがあります:
<mvcSiteMapNode title="Home" controller="Home" action="Index">
<mvcSiteMapNode title="Item1" controller="Item1" action="Index"/> /**should desplayed like submenu element of Home
<mvcSiteMapNode title="Item2" controller="Item2" action="Index"/> /**should desplayed like submenu element of Home
<mvcSiteMapNode title="About" controller="About" action="Index"/>
<mvcSiteMapNode title="Etc" controller="Etc" action="Index"/>
<mvcSiteMapNode />
しかし、私の場合、私は持っています
|ホーム| |アイテム1| |アイテム2| |概要| |その他| 代わりは。