Load List Values for Improved Efficiency
An anonymous reader writes "Reduce the number of database hits and improve your Web application's efficiency when you load common shared list values only once. In this code-filled article, learn to load the values for drop-down lists when your Web application starts and then to share these loaded list values among all the users of your application."
I find that something that helps there, particularly if different users have diferent data for the list is to use javascript.
.js file & delete the old one.
.js file is called and let the client browser handle the caching...
Basically, create a session variable for the user (we'll call it cacheTimeStamp) with the current date/time to the hour (i.e. yymmddhh).
When the page with the drop-down list is called, check current timestamp. If it's expired, create a new javascript
Then, when the <script> tag is called, use thecacheTimeStamp value to ensure a current