本文介绍了如何设置默认值下拉列表控件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个下拉我的网页列表控件。我已经将DataTable绑定到DropDownList控件如下: -
I have a drop down list control on my web page. I have bind the datatable to the dropdownlist control as follows -
lstDepartment.DataTextField = "DepartmentName";
lstDepartment.DataValueField = "DepartmentID";
lstDepartment.DataSource = dtDept;
lstDepartment.DataBind();
在页面加载事件我想设置的默认值下拉从我的其他表字段列表的控制。
in the page load event i want to set the default value to the drop down list control from my other table field.
如何做到这一点?
推荐答案
在你的的DataBind()
:
lstDepartment.SelectedIndex = 0; //first item
or
lstDepartment.SelectedValue = "Yourvalue"
or
//add error checking, just an example, FindByValue may return null
lstDepartment.Items.FindByValue("Yourvalue").Selected = true;
or
//add error checking, just an example, FindByText may return null
lstDepartment.Items.FindByText("Yourvalue").Selected = true;
这篇关于如何设置默认值下拉列表控件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!