hola amigos necesito armar un menu con 2 o mas niveles pero por mas que armo esto no me logra salir en mi html al momento de ejecutar el proyecto aca les paso el codigo.
<?xml version="1.0" encoding="utf-8" ?>
<mvcSiteMap xmlns="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap-File-3.0" enableLocalization="true">
<mvcSiteMapNode title="Home" controller="Home" action="Index">
<mvcSiteMapNode title="Consulta de Cliente" controller="Home" action="Foros" roles="ADMINISTRADOR,INVITADO"/>
<mvcSiteMapNode title="Mi Cliente" controller="Home" action="Descargas" roles="ADMINISTRADOR"/>
<mvcSiteMapNode title="Datos" controller="Home" action="About" roles="ADMINISTRADOR"/>
<mvcSiteMapNode title="Registrar" controller="Home" action="Registrar" roles="ADMINISTRADOR"/>
<mvcSiteMapNode title="Listado de precios" controller="Cliente" action="ListarCliente" roles="ADMINISTRADOR"/>
<mvcSiteMapNode title="Dealer" controller="Dealer" action="Index" roles="ADMINISTRADOR,INVITADO">
<mvcSiteMapNode title="Sign Up" controller="Dealer" action="Create" roles="ADMINISTRADOR,INVITADO"/>
</mvcSiteMapNode>
</mvcSiteMapNode>
</mvcSiteMap>
lo que no sale al momento de ejecutar la pagina en el menu es:
<mvcSiteMapNode title="Dealer" controller="Dealer" action="Index" roles="ADMINISTRADOR,INVITADO">
<mvcSiteMapNode title="Sign Up" controller="Dealer" action="Create" roles="ADMINISTRADOR,INVITADO"/>
</mvcSiteMapNode>
Gracias, Victor Yucra