Reputation: 4040
how to create site map page (like http://www.google.com/sitemap.html or http://www.microsoft.com/presspass/sitemap.mspx) in asp.net
Upvotes: 1
Views: 732
Reputation: 1340
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.
Upvotes: 1
Reputation: 111
http://www.w3schools.com/aspnet/aspnet_navigation.asp is one of the basic resources you can start with. You can also refer http://aspalliance.com/695_CodeSnip_Building_a_Site_Map_with_ASPNET_20 for this. Do you have any specific issue while doing this?
Upvotes: 0