0

我在 aspx 页面中有一个下拉列表,我正在使用数据表填充下拉列表。我如何将必填字段验证器应用于此下拉列表。?请帮帮我

4

1 回答 1

1

您必须为首先InitialValue 选择的选定项目设置Value

<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" 
    ControlToValidate="DropDownList1" 
    InitialValue="-- Please select --" 
    ErrorMessage="Please select something" />

 <asp:DropDownList ID="DropDownList1" AppendDataBoundItems="true" runat="server">
     <asp:ListItem>-- Please select --</asp:ListItem>
  </asp:DropDownList>
于 2013-03-23T15:22:25.490 回答