I’m new with asp and c#. I have a checkbox list bound to a data source. How do I save the state of my checkbox list so that the checkboxes will be retained?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If it stays bound to the same data source, then you would need to ensure that the values are persisted to the data source so that it is refreshed correctly on re-bind.
Other more painful options would be to persist that information elsewhere, and try to programatically reapply the values based on that, after the re-bind has finished.