Do you mean this? http://msdn.microsoft.com/en-us/library/cc903962(VS.95).aspx
How do I create a splash screen before loading the map, which displays some info and has a checkbox saying "Do not show this again"
How do I program the checkbox so that when checked, the next time map loads, splash screen is not displayed.
Thanks for your help
There are 2 ways I can think of:
1) Machine specific - use the Isolated Storage to save a flag not to show it again
2) User specific - save the setting to a "settings" file on the server or use a database to save the setting.
Could you please provide some sample code?
Here's a blog on using Isolated Storage. http://blogs.silverlight.net/blogs/msnow/archive/2008/07/16/tip-of-the-day-19-using-isolated-storage...
I am not sure you can use the isolated storage for the splash screen which is displayed while the application is loaded because at this time, by definition, the application is not yet loaded.
So I would be more thinking about something in Javascript and a storage as cookies.
That being said, I never tried, so just my 2cts.:)