0

实际上,当用户选择一个值时,我正在使用一个具有多个值的列表框,列表框中的项目被插入数据库,如“Abc,xyz,gkl”类型现在我想从表单前面的数据库中检索这个值,并且选择我该怎么做这是我的代码

ds = new DataSet();

              if (ds.Tables[0].Rows.Count > 0)
              {


                  string[] arr_Electro_Therapy = ds.Tables[0].Rows[0]["Electro_Therapy"].ToString().Trim().Split(',');
                  for (int i = 0; i < arr_Electro_Therapy.Length; i++)
                {
                    for (int k = 0; k < listBox1.Items.Count; k++)
                      {

                         if (listBox1.Items[k].Value.ToString().Trim() == arr_Electro_Therapy[i].ToString().Trim())
                          {

                              listBox1.Items[k].Selected = true;
                              hdSelected.Value = hdSelected.Value + ", " + listBox1.Items[k].;
                          }
                      }
                  }
4

0 回答 0