Maintain state of dynamically created checkbox list during page refresh

Maintain state of dynamically created checkbox list during page refresh

Hi There,
 
I need to maintain state of upto 100 checkboxes whether it is checked or not. My page automatically refreshes every 10 seconds, so if the user had selected some checkboxes and is still in the process of selecting more checkboxes, the moment page refreshes(not postback-more like f5-page refresh code is in javascript using setinterval), the checked state vanishes.
I am creating the checkboxes dynamically. I have 10 rows and each row has 10 checkboxes and each row represents checkboxes pertaining to that row.
for ex
tester1 slot1 slot2.....slot10
tester2 slot1 slot2....slot10
.........
tester10 slot1 slot2.....slot10
 
each tester must have checkbox for select all, unselect all in a row and each slot is a checkbox
 
I need my app to be crossbrowser comaptible and i tried cookies, but it errs saying $cookie is not supported
I also have checkall and uncheck all for each row upto 10 rows. I need to maintain the state of these as well.
Please advise!
Is session a better option since I need cross browser comapatibility and it is so many checkboxes so how to maintain this much of data?
 
Any pointers will be really helpful. I am using asp.net mvc, jquery etc