ASP.NET DropDownList 控件设置默认选中项

如题

DropDownList1.SelectedIndex = DropDownList1.Items .IndexOf(DropDownList1.Items .FindByValue("1"));

//或者 

DropDownList1.SelectedIndex = DropDownList1.Items .IndexOf(DropDownList1.Items .FindByText("女")); 

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