VB.NET中Dropdown的选定值

时间:2014-01-27 07:10:23

标签: asp.net vb.net drop-down-menu

我的页面中有以下下拉列表:

<asp:DropDownList ID="cboEmployerType" runat="server" TabIndex="8" Width="60%" onclick="javascript:shouldsubmit=false;">
                       <asp:ListItem Value="Null">-Select-</asp:ListItem>
                       <asp:ListItem Value="E">Employer</asp:ListItem>
                       <asp:ListItem Value="O">OJT Provider</asp:ListItem>
                   </asp:DropDownList>

当我点击某个按钮时,我的下拉列表应该选择 - 选择 - 。我该怎么做?

我在我的代码中尝试了这个但是没有用。

cboEmployerType.SelectedValue = "null"

1 个答案:

答案 0 :(得分:2)

您可以设置

cboEmployerType.SelectedIndex = 0

这将选择您的第一个值。