In my asp.net/mvc (html 5) application, I have the Add / Edit Product user interface, which has 4 steps. In step 3, we have an image upload / display page.
As soon as the user uploads the images, I need to cache them in a browser. (So that the user does not request the same image from the server before the cache expires)
What are the best approaches to achieve this kind of caching? (Can I use html 5 local storage? Or is using static caching of content using IIS (or webconfig) enough?)
source
share