это мой HTML-код, в котором я использовал две радиокнопки, и мне нужен обязательный валидатор полей, который заставит пользователя выбрать хотя бы одну радиокнопку.
<div class="form-group">
<label for="enterType" class="col-sm-2 control-label">Select Type
</label>
<div class="col-sm-10">
<asp:RadioButton ID="rbEncryption" runat="server"
GroupName="grpEncryption" Text="Encryption (e.g. welcome!, Enter
plain text)" />
</div>
<label for="enterType" class="col-sm-2 control-label" >
</label>
<div class="col-sm-10">
<asp:RadioButton ID="rbDecryption" runat="server"
GroupName="grpEncryption" Text="Decryption (e.g. welcome!, Enter
Encrypted text)" />
</div>
</div>