End Google Ads 201810 - BS.net 01 --> hi.
I need help in this.

I have a textbox and two radiobutton.
For example, If the data in the textbox is yes, I want the yes button to be selected. If the data in the textbox is no, the no button is selected.

so far the code i have is this,
if (query returns true)
{
VMradioButton.Checked = true;
TnRradioButton.Checked = false;
}
else{
VMradioButton.Checked = false;
TnRradioButton.Checked = true;
}

please, need help. thanks