Firstly apologies if this has been resolved in a previous post but i could not identify one similar.
I am coding in
VB and have two
RadioButtons
In the Page_Load i am setting one of the RadioButtons checked value to true based upon a variable.
After setting either RadioButton to checked CheckedChanged will no longer fire.
If the Radiobutton is not checked the CheckedChanged fires fine.
Example code below:
Code:
ProtectedSub Page_Load(ByVal sender AsObject, _
ByVal e As System.EventArgs) HandlesMe.Load
If AutoPreference = 1 Then
autoSelectYes.Checked = True
Else
autoSelectNo.Checked = True
EndIf
EndSub
ProtectedSub autoSelectYes_CheckedChanged(ByVal sender AsObject, ByVal e AsEventArgs) Handles autoSelectYes.CheckedChanged
AutoCompleteExtender3.Enabled = True
EndSub
I have looked at a few similar threads to this issue but have not found a working solution as yet.
Any direction would be superb!