0

有没有办法在 asp:dropdownlist 上使用 html5 验证(不是 asp:RequiredFieldValidator)。我已经尝试过这个:

<asp:DropDownList ID="ExpenseLineTypeDdl" required="required" initialvalue="0" CssClass="form-control" runat="server">  
     <asp:ListItem Value="0">Please Select a Type</asp:ListItem>    
</asp:DropDownList>

我希望它与此类似(除了 asp:dropdownlist):

<asp:TextBox runat="server" required="required"></asp:TextBox>
4

1 回答 1

2

我必须摆脱 {initialvalue="0"} 并设置初始列表项的 {value=""}:

<asp:DropDownList ID="ExpenseLineTypeDdl" required="required" CssClass="form-control" runat="server">  
      <asp:ListItem Value="">Please Select a Type</asp:ListItem>    
</asp:DropDownList>
于 2015-07-08T14:59:50.110 回答