vote up 0 vote down star

I have a asp.net checkbox list bound to a linq to sql datasource and when I check the item count of my CheckBoxList on the page load event it is 0. I want to be able to set the selected items on my checkboxlist here but cannot.

The datasource's selected event fires after the page load. If this is the case, how can I set the selected items on my list?

If I set the SelectedValue to a value it only displays the last value as selected instead of all the values which are selected. How can I select multiple values in my checkboxlist in the pageload event?

flag

55% accept rate

2 Answers

vote up 0 vote down

Sounds like a Page Lifecycle - Databinding question.

You should really take a look at (the answers to) this question.

link|flag
vote up 0 vote down

I used the DataBound event to select to set the selected items.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.