sitemap in memory

  • Thread starter Thread starter Smokey Grindle
  • Start date Start date
S

Smokey Grindle

is it possible to create a dynamic site map in memory then use that as the
website sitemap? my problem for using a static one is that I have dynamic
content pages which are based off an article ID so 90% of my pages are like
this


artice.aspx?articleID=105

but then that article could have a parent article... so I need to build this
map dynamically... any suggestions on how to?
 
You can create a Custom sitemap provider by inhering from
StaticSiteMapProvider class and overriding the abstract methods and
Initialize method.
 
thanks! think I figured it out

Prasanna Pattam said:
You can create a Custom sitemap provider by inhering from
StaticSiteMapProvider class and overriding the abstract methods and
Initialize method.
 
Back
Top