.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.

+2


source to share


5 answers


Take a look at isolated storage . Here's a special blog post for ClickOnce apps .



+2


source


Isolated storage. This is similar to the filesystem API, but more secure and arguably a little more cumbersome to work with.



+2


source


You can use isolated storage .

+2


source


Instead of cookies, you can use an isolated storage API to store files on the client machine.

+1


source


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

0


source







All Articles