I need to load some kind of list like the List view to allow the user to select from a set of small PNG files (1 to 2K each), but there are like 150 of them.
If I dynamically load them into a listview – are they stored in the session for each user of the application ?
If they are – whats a better way to do it to avoid this being in the server’s memory ?
If you use the name of the image file (or an image in a theme) it’s only stored and cached on the browser. The only way to load it in memory is to load the image in an System.Drawing.Image object.
Please login first to submit.