how to create site map page (like http://www.google.com/sitemap.html or http://www.microsoft.com/presspass/sitemap.mspx) in asp.net
how to create site map page (like http://www.google.com/sitemap.html or http://www.microsoft.com/presspass/sitemap.mspx ) in asp.net
Share
You can create a web.sitemap file as indicated by krusaint [ Build a SiteMap ] and then you can programmatically enumerate the sitemap nodes [ MSDN – How to: Programmatically Enumerate Site-Map Nodes ] to construct a table similar to the page that google uses.
http://www.google.com/sitemap.html
Google’s sitemap.html page is nothing more than a table with several un-ordered lists of links. It should be pretty easy to replicate by viewing the source of their page.