.NET - Click-Once / Smart Client Applications - Cookie Browser Equivalent?
Is there a browser cookie equivalent for Smart Client / Click After developing an application on .NET 3.5? Somewhere I can store cookies on the user's machine and not on the server.
Or put another way: what file location can you record from a sandboxed Click-Once application that will not violate good security practices. I don't want to sandbox my application and run with elevated privileges if I don't need to.
source to share
Instead of cookies, you can use an isolated storage API to store files on the client machine.
source to share
I'm not sure what you are asking here. Are you trying to save data? You can do this in isolated storage, although I often save to System.Environment.SpecialFolder.AppData.
Isolated storage: http://msdn.microsoft.com/en-us/library/3ak841sy(VS.80).aspx
source to share