热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

禁用DropDownList的Items

可以先看看效果,被禁用的DropDownList的Items已经无法选取与颜色也变为灰色。刚开始,DropDownList没有接收从网址传来的参数时&#

可以先看看效果,被禁用的DropDownList的Items已经无法选取与颜色也变为灰色。

 

刚开始,DropDownList没有接收从网址传来的参数时,它每一个Item都是可以选取的,一旦接收了值。所对应的DropDownList的item将无法选取而达到禁用。

xxx.aspx:

<asp:DropDownList ID&#61;"DropDownList1" runat&#61;"server">
        asp:DropDownList>

 

xxx.aspx.cs: 

ExpandedBlockStart.gifView Code
protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            Data_Binding();
        }

        if (Request.QueryString["site"] !&#61; null)
        {
            foreach (ListItem li in DropDownList1.Items)
            {
                if (li.Text &#61;&#61; Request.QueryString["site"].ToString())
                {
                    li.Attributes.Add("disabled""disabled");
                }
            }
        }

    }

    private void Data_Binding()
    {
        this.DropDownList1.DataSource &#61; Site();
        this.DropDownList1.DataTextField &#61; "key";
        this.DropDownList1.DataValueField &#61; "value";
        this.DropDownList1.DataBind();
    }

    private Dictionary<stringstring> Site()
    {
        Dictionary<stringstring> site &#61; new Dictionary<stringstring>();
        site.Add("Insus.NET cnblogs""http://insus.cnblogs.com");
        site.Add("Microsoft""http://www.microsoft.com");
        site.Add("Google""http://www.google.com");
        return site;
    }

 



推荐阅读
author-avatar
倪思慧1888
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有