Assigning a value to a Radio Button List
I need to assign a radio button list with a value passed through a session variable. This is the syntax I'm using:
radOwner.Items(0).Selected = True
radOwner.selectedItem.value = context.items("Owner")
Something is obviously wrong because when I try to assign the "Owner" value to radOwner it doesn't work.
Does anyone know how is this usually done.
|