.net DropDownList默认选择指定的值

有控件dropdownlist1
                  
                        aa
                        bb
                        cc
                        dd
                        ee
                    

现从数据库中返回值为cc,要dropdownlist1默认选择cc:

DropDownList1.Items.FindByText("cc").Selected= true;

如数据库中存储的为value值:

Dropdownlist1.Items.FindByValue("cc").Selected = true



你可能感兴趣的:(.net)