I am implementing a custom site map provider to display the bread crumb
control on all the navigation pages on my site.
My site's navigation possibly consists of hundreds nested of categories
and products, and i don't want to create and store the whole catalog in
the site map.
I think in my case it would be cheaper to just dynamically create the
site map structure relevant to the current request and return the whole
tree..
I have tried to override SiteMapResolve event, but doesn't seem like i
was on the right track, because the mapresolve event fires for just one
node, and i cannot return the whole navigation tree
wondering if someone has faced similar problem, or some possible pointers...
thanks in advance
--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
any other ideas ?
thanks
Our custom provider does not inherit from staticSiteMapProvider, instead the
data is cached using ASP.NET caching based on user id.
APB