168k views
0 votes
(tco 2) what is the c# code that refers to the third item in a check box list control named cblparts?

User Evi
by
7.6k points

2 Answers

3 votes
Definition. TCO2 rate. (Abbreviation) Test of Carbon Dioxide (CO2) aka Bicarbonate Test. A test devised to measure the amount of carbon dioxide in blood
User Thomas Ludewig
by
8.7k points
7 votes
The CheckBoxList control is in the System.Web.UI.WebControls namespace (so not winforms!). It has an Items[] indexer to get to the items. Counting starts at 0, so the third item would be:

cblparts.Items[2]
User Charif DZ
by
8.3k points