DropDownList 禁止选择某一项

 

public void DisAbleDropDownListItem(DropDownList ddl)
        {
            foreach (ListItem li in ddl.Items)
            {
                if (li.Value == "1" || li.Text == "RUN")
                {
                    li.Attributes.Add("disabled""disabled");
                }
            }
        }

  protected void Page_Load(object sender, EventArgs e)
        {
            DisAbleDropDownListItem(ddl);
        }

在Page_Load时,应用这个方法。

posted @ 2012-10-17 09:37  南潇湘  阅读(265)  评论(0编辑  收藏  举报