I'm using the built-in SiteMap feature in ASP.NET with a static web.SiteMap XML file. I'm programmatically editing the SiteMap in some pages. I'd like to undo these edits when the user leaves.

Initially, I tried to undo my changes in the Page Unload event, but that made the changes right after it finished loading everything else in the page so the user didn't even see the initial change. I Googled around and from what I understood, there is no way to access the code behind when the user is leaving the page. If there is actually a way, how?

The other method I thought of would be to have the SiteMap cache clear every time I load a page. How can you tell a page to clear the SiteMap cache and refresh based on the XML file? Also, would this add a lot of overhead if there was say 200-300 pages in the SiteMap?

link|improve this question

60% accept rate
why not use a SitemapProvider with SQL? – Caspar Kleijne May 8 '11 at 9:24
Wouldn't that still cache the SiteMap rather than doing another SQL query with every page? – Ali Almohsen May 8 '11 at 10:42
If you attach the proper dependencies the sitemap is only refreshed on changes. – Caspar Kleijne May 8 '11 at 10:55
@CasparKleijne Could I have a link please? Also, would I be able to have a page that has different nodes based on the query string? – Ali Almohsen May 8 '11 at 10:59
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.