I have two radio buttons that will determine the min value of the range validator of a textbox. So the radio buttons work well (resetting the min value on every CheckedChanged), except when the textbox display error message like "enter min value xxx", then the radio button has to be clicked twice (which is buggy) only it will trigger the vb code. Can someone help me with this? Thank you!
The code for RadioButtons:
<asp:RadioButton runat="server" ID="rbSameT" Text="SameT" GroupName="rbGroupT" Checked="true" AutoPostBack="true" OnCheckedChanged="rbSameT_CheckedChanged"/>
<asp:RadioButton runat="server" ID="rbDiffT" Text="DiffT" GroupName="rbGroupT" AutoPostBack="true" OnCheckedChanged="rbDiffT_CheckedChanged"/>
The code behind for the RadioButtons:
Protected Sub rbSameT_CheckedChanged(ByVal sender As Object, ByVal e As EventArgs) Handles rbSameT.CheckedChanged
If sender IsNot Nothing And e IsNot Nothing Then
ResetValidators(False)
End If
End Sub
Protected Sub rbDiffT_CheckedChanged(ByVal sender As Object, ByVal e As EventArgs) Handles rbDiffT.CheckedChanged
ResetValidators(True)
End Sub
Try removing the
Checked="true"
and setEnableViewState="True"