码迷,mamicode.com
首页 > 其他好文 > 详细

不能在DropDownList 中选择多个项

时间:2016-09-20 18:10:54      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

在绑定DropDownList时如果出现多次绑定,会出错以下错误:

“不能在DropDownList 中选择多个项”

经了解,只需要在选中值是清空选择即可:xxDropDownList.ClearSelection() ;

 

  /// <summary>
    /// 设定选中项
    /// </summary>
    /// <param name="list"></param>
    public static void SetListControl(ListControl list, string selectedValues)
    {
        if (string.IsNullOrEmpty(selectedValues))
            return;
        list.ClearSelection();
        foreach (string var in selectedValues.Split(‘,‘))
        {
            string value = var.Trim();
            if (value.Length > 0)
            {
                foreach (ListItem item in list.Items)
                {
                    if (item.Value == value)
                    {
                        item.Selected = true;
                        break;
                    }
                }
            }
        }
    }

不能在DropDownList 中选择多个项

标签:

原文地址:http://www.cnblogs.com/samlin/p/5889636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!