I have a form with checkboxes, with their 'checked' value being populated from code behind in a database.
Imagine, if I have checkboxes 1,2 and 3 all set to checked in the database. I load the page, uncheck checkbox 3 and then commit the changes to the database. Now in my database, checkboxes 1 and 2 are checked and 3 is unchecked. I refresh the page, it gets the updated database values and the checkboxes have the correct checked values.
This is only working for me in chrome and FF. In IE, even if I uncheck checkbox 3, commit the changes to the database and refresh, it still appears checked. I forced a refresh with ctrl+f5 and it still isn't updating. Adding autocomplete="off" to both the checkboxes and parent form did nothing.