C#我可以更改(视觉上)下拉列表AutoPostBack =" true"来自.cs?

时间:2015-04-01 20:59:57

标签: c# drop-down-menu autopostback

我想使用代码

更改DropDown选择(在PageLoad上可见)

----------------------------- [ASPX] --------------- ---------------------

<asp:DropDownList ID="cbo" runat="server" AutoPostBack="True">
<asp:ListItem Value="3">ALL</asp:ListItem>
<asp:ListItem Value="1">YES</asp:ListItem>
<asp:ListItem Value="2">NO</asp:ListItem>
</asp:DropDownList>

----------------------------- [/ ASPX] -------------- ----------------------

在我的.cs文件中我想这样做

----------------------------- [CS] --------------- ---------------------

(pageload)
cbo.SelectedIndex = 1;

----------------------------- [/ CS] -------------- ----------------------

它不能正常工作

1 个答案:

答案 0 :(得分:0)

看起来您正在设置另一个下拉列表的选定索引。我认为它应该是cbo.SelectedIndex = 1