我想使用代碼C#我可以更改(視覺)從.cs下拉列表AutoPostBack =「true」嗎?
更改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] ----------- -------------------------
它不工作
當你說它不工作時,它是什麼意思。你在期待哪個元素被選中? – 2015-04-01 21:12:46
_if我可以理解你......如果你想在'1'的posticion上建立'ListItem',只需在你的'ListItem'中添加屬性「Selected」。例如: YES asp:ListItem>'。 –
2015-04-01 22:03:46