asp:RadioButton GroupName="EndorsementType" runat="server" ID="rdoRemoveProperty" Text="Remove Property from TIV" />
I was thinking about implementing a custom validator, and using a client javascript function to reference the radio button ids, (I'm using web forms, not mvc),
something like.. if(document.getElementById(<%= rdoAddProperty.ClientId %>).checked == true) && ...
Anyone know of a way to do it without knowing the clientId?