如何在 C# 中更改下拉列表选择的索引。我在用户控件中绑定下拉列表。
选定的值应将表单页面更改为页面。
我正在这样做但返回 -1
在 aspx 页面中,我发现 contorl tryint 更改已选择索引
DropDownList ddl = (DropDownList)ucSearchControl1.FindControl("ddlSearchType");
ddl.SelectedIndex = 2;
如何在 C# 中更改下拉列表选择的索引。我在用户控件中绑定下拉列表。
选定的值应将表单页面更改为页面。
我正在这样做但返回 -1
在 aspx 页面中,我发现 contorl tryint 更改已选择索引
DropDownList ddl = (DropDownList)ucSearchControl1.FindControl("ddlSearchType");
ddl.SelectedIndex = 2;