我的页面中有以下下拉列表:
<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"
答案 0 :(得分:2)
您可以设置
cboEmployerType.SelectedIndex = 0
这将选择您的第一个值。