I\'m trying to access the value of a selected radioButton. I have a list of radio button\'s seperated by sub headers (hence why i havent used a radioList)
I don\'t know
The FindControl method you are using, expects you to pass it the ID that was assigned to control when you created it.
FindControl
ID
So for your example the RadioButton.ID should be equal to singleType.appTypeID.ToString()
RadioButton.ID
singleType.appTypeID.ToString()
Hope this helps.