Local Storage in the browser

Local storage lets you store things indefinitely in the user's browser, specific to your site. This can be used for all kinds of things, like caching dropdown values, storing user information, keeping client-side shopping carts, whatever else you can think of. It's a simple store, just string-value pairs, so if this doesn't suit your needs, check out the much more powerful and more complex IndexedDB.

View code on GitHub

Comments

Popular posts from this blog

C# Record Serialization

Add timestamp to photo using ImageMagick

Read/write large blob to SQL Server from C#