ページのPageLoadのDataSourceにバインドされたDropDownListがあります。このDropDownリストでは、Select値をデフォルト値として追加しました。このドロップダウンリストの下にいくつかのテキストボックスがありますが、追加ボタンがあります。ドロップダウンリストに検証を追加すると、ユーザーが値を「選択」として残した場合、ユーザーは別の値を選択しない限り追加ボタンをクリックできません。DropDownListで検証済み
<asp:Label ID="lblItems" runat="server" Text="SemesterCode: "></asp:Label>
<asp:DropDownList ID="ddlItems" AppendDataBoundItems="true" runat="server">
<asp:ListItem Text=" -- Select -- " Value="-1"></asp:ListItem>
</asp:DropDownList>