Tagged Questions
2
votes
1answer
524 views
Breadcrumbs SiteMapPath and SEO-Friendly Routing
I have routing set up as follows:
void RegisterRoutes(RouteCollection routes)
{
routes.MapPageRoute("", "Home", "~/Default.aspx");
......
}
I'm implementing breadcrumbs using a SiteMapPath ...
2
votes
3answers
3k views
Is it possible use ASP.NET Sitemap to generate Breadcrumbs?
I want my ASP.NET site to have simple menu string aka Breadcrumbs.
I have created Sitemap with all required elements and registered into Web.config. For example:
<siteMap>
<siteMapNode ...
2
votes
4answers
155 views
Is adding attributes to nodes in the web.sitmap a bad idea?
I using SiteMapPath with an xml file for data. I would like to use the same file for another menu, but I need to have more information attached to each node.
<siteMapNode target="_blank" ...
1
vote
1answer
156 views
Is there any general purpose breadcrumbs management library/code in .net?
I want to make a msdn style breadcrumbs navigation
0
votes
1answer
113 views
No breadcrumbs with MVCSiteMapProvider custom MvcRouteHandler
I have 2 routes in global.asax
routes.MapRoute(
"DefaultFriendlyUrl",
"Page/{FriendlyUrl}",
null,
new string[] { "MvcApplication2.Controllers" ...
0
votes
1answer
114 views
SiteMapPath Asp.net at Java
how can i do SiteMapPath navigation like Asp.net at Java
(home -> product -> dvd -> ...)
Exist some lib or jar to do it ? Or some example, would be nice, any idea )
Thank you.
Thank you CraigTP :)
...