I am looking for ideas on the best way to persist an array of values from one web session to the next. I will be populating a Checkbox list and would like to persist the last set of selected checkboxes to the next session. (this is meant to save time for the user since they will likely always select the same subset of checkboxes.)
I will be iterating through the checkbox list and putting the selected values into an arraylist.
Where would be a good place to presist this set of data? I looked at storing the object to database or possibly an XML file on the server. I also considered pushing the data to the web.config but would like to avoid an application restart.
Any opinions or suggestions?
TIA
J