Isolated storage bug.
I am writing some simple settings.xml file fro saving some application state (not using ApplicationSettings) and I have the following issues:
I write out the settings int he Application_exit handler.
I then try to load them in the Application_startup handler.
The exit handler writes fine. The startup handler see's not files in the store the next run. However when the second run terminates I can see the previous files in the exit handler.
It appears the "isolation" level for the files changes depending on where it occurs in your application.
I moved the Load into my pages constuctory and the save into the object when it's modified and now they work correctly.
In other words if you write files in the exit handler you cannot access them within the scope of the application during runtime.