zoukankan      html  css  js  c++  java
  • 不能在DropDownList 中选择多个项

    在绑定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;
                        }
                    }
                }
            }
        }

  • 相关阅读:
    886. 求组合数 II(模板)
    885.求组合数 I(模板)
    线性同余方程(同余+扩展欧几里得模板)
    扩展欧几里得(模板)
    乘法逆元(模板)
    求欧拉函数(模板)
    最大公约数(欧几里得算法/辗转相除法)
    求约数之和
    New beginning~
    CSP-S 2019游记
  • 原文地址:https://www.cnblogs.com/samlin/p/5889636.html
Copyright © 2011-2022 走看看