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;
                        }
                    }
                }
            }
        }

  • 相关阅读:
    Java程序设计11——异常处理
    Hive安装及配置
    zookeeper集群安装(转)
    Linux网络服务管理命令
    Linux网络配置常用命令
    IP地址及子网掩码计算
    linux ftp、sftp、telnet服务开通、更改Orale最大连接数
    SQL多表连接
    用css伪类实现提示框效果
    关于DOM操作的性能优化
  • 原文地址:https://www.cnblogs.com/samlin/p/5889636.html
Copyright © 2011-2022 走看看