本帖最后由 anyu 于 2012-11-14 21:36 编辑
1、Windows窗体,把请选择放在第一个
comboBox1.SelectedIndex = 0;
2、控件,通过Selected="True"来实现。- <asp:DropDownList runat="server">
- <asp:ListItem Value="0" Text="-请选择-" Selected="True"></asp:ListItem>
- <asp:ListItem Value="1" Text="电子设备"></asp:ListItem>
- <asp:ListItem Value="2" Text="非电子设备"></asp:ListItem>
- </asp:DropDownList>
复制代码 |