Checkbox list does not support multiple databind. To be a bit clearer, it does not support databind for multi select in checkbox list. It only stores one entry from the checkbox list.
In one of my recent project I had to implement checkbox list where user can tick multiple checkboxes and store them into the database table. In this project I was using SQL server express database and storing the data using the data in colon (:) delimited value so that I can push the data back into Oracle database to use this in Oracle APEX application. You can store your data whatever fashion you want to save in. In oracle APEX application it is an in build feature where you can bind data dynamically in checkbox list. Unfortunately you can not do this in ASP.NET.
Lets start the task, I have used SqlDataSource for database operation in this example and connection string pulled from web.config file. Here is my SqlDataSource structure –
SelectCommand="SELECT * FROM [rtt_sites] where sit_id=@sit_id"UpdateCommand="update rtt_sites set name=@name, sit_type=@sit_type, status=@status, primary_function=@primary_function, fee_type=@fee_type, access_type=@access_type, update_date=getdate() where sit_id=@sit_id">
In the above sqldatasource I am actually using a query string to fetch data in a Formview. User can update or change record if they want to. Now here is my formview structure –
Now in the above formview I also have couple of dynamic dropdown list populated from database table. Hope it is easy to understand. If you look at the above code closely, you will notice I have binded data in all textbox and dropdown list controls however I did not bind data in checkbox list control at this stage.
Lets start first bind the data dynamically in those checkboxes. So I want to bind data on formview databound event. To retrieve the value from database for these checkboxes I have created a few labels to fetch the data. I also have set the visible property to false so that they are not visible to user.
Now the aim is to grab the value from these label controls and split them into arrays then fetch the data into checkbox list control :).
//loop through the array and bind to checkbox list
14
for(inti = 0; i <= c.Items.Count - 1; i++) {
15
if(str.Contains(c.Items(i).Value)) {
16
c.Items(i).Selected = true;
17
}
18
}
19
20
}
[warning]I have omitted some codes here, just wanted to show one example how to fetch checkbox list dynamically. Follow the same procedure if you have multiple checkbox list like mine.[/warning]
Here is the screen shot when data fetched in checkboxes –
CheckBoxList
You can see in the above screen data are nicely fetched in CheckboxList. Now the question is how can I update the data when user tick or un-tick any of those check boxes. Well to do this I had to create a custom function and event and call that in page load to bind update parameters in sqldatasource.
Lets look at the function first, this function basically grab the value from checkboxlist and combine them together in whatever format I want.
The above function basically grabbing the selected value from checkbox list and return as string with colon(:) separated value. Now I got the the string value and I have to update the database column. Here is my code on page load –
Now here is your fully functional checkbox list databind in very simple and easy way. Let me know if you have any problem or issue implementing this. Good luck
I comment each time I especially enjoy a article on a website
or if I have something to valuable to contribute to the discussion.
It’s caused by the sincerness displayed in the article I browsed. And on this article Databind in checkbox list in ASP.NET | Tajuddin’s Blog.
I was excited enough to drop a commenta response I actually do have a couple
of questions for you if it’s allright. Could it be only me or do some of these comments look as if they are written by brain dead people? And, if you are writing at other online sites, I’d like to keep up with
everything new you have to post. Could you make a list
the complete urls of all your communal pages like your linkedin profile, Facebook page or twitter feed?
I hardly create remarks, however i did some searching and wound up here
Databind in checkbox list in ASP.NET | Tajuddin’s Blog. And I actually do have a couple of questions for you if it’s allright.
Could it be only me or does it look like some of these responses
come across like they are coming from brain dead visitors? And, if you are posting on additional places, I would like to follow anything
fresh you have to post. Could you make a list of every one of all your public pages like your
linkedin profile, Facebook page or twitter feed?
Woah! I’m really enjoying the template/theme of this website. It’s simple, yet effective.
A lot of times it’s hard to get that “perfect balance” between superb usability and visual appearance. I must say you have done a very good job with this. Also, the blog loads extremely quick for me on Internet explorer. Outstanding Blog!
Hi there! This is my 1st comment here so I just wanted to give a quick shout out and
say I genuinely enjoy reading through your blog posts. Can you suggest any
other blogs/websites/forums that go over the same subjects?
Thanks!
Have a smiliar project was wondering if you are available or interested.
Thanks.
Chad Hughes
Thiѕ tеxt is іnvaluable. When can I find out moге?
I comment each time I especially enjoy a article on a website
I actually do have a couple
And, if you are writing at other online sites, I’d like to keep up with
or if I have something to valuable to contribute to the discussion.
It’s caused by the sincerness displayed in the article I browsed. And on this article Databind in checkbox list in ASP.NET | Tajuddin’s Blog.
I was excited enough to drop a commenta response
of questions for you if it’s allright. Could it be only me or do some of these comments look as if they are written by brain dead people?
everything new you have to post. Could you make a list
the complete urls of all your communal pages like your linkedin profile, Facebook page or twitter feed?
Hi there, I lοg on to your blog on а геgulаr basis.
Υour writіng style is witty, keeр uρ the good ωοгκ!
I hardly create remarks, however i did some searching and wound up here
And, if you are posting on additional places, I would like to follow anything
Databind in checkbox list in ASP.NET | Tajuddin’s Blog. And I actually do have a couple of questions for you if it’s allright.
Could it be only me or does it look like some of these responses
come across like they are coming from brain dead visitors?
fresh you have to post. Could you make a list of every one of all your public pages like your
linkedin profile, Facebook page or twitter feed?
Excellent post! We are linking to this great content on our site.
Keep up the great writing.
Woah! I’m really enjoying the template/theme of this website. It’s simple, yet effective.
A lot of times it’s hard to get that “perfect balance” between superb usability and visual appearance. I must say you have done a very good job with this. Also, the blog loads extremely quick for me on Internet explorer. Outstanding Blog!
Saved as a favorite, I really like your web
site!
I always spent my half an hour to read this webpage’s articles or reviews every day along with a mug of coffee.
Hi there! This is my 1st comment here so I just wanted to give a quick shout out and
say I genuinely enjoy reading through your blog posts. Can you suggest any
other blogs/websites/forums that go over the same subjects?
Thanks!
Great article, can you send me the source code for study. Thank you