RadioButtonList.SelectedValue or RadioButtonList.SelectedItem(RadioButtonList.Selec tedIndex).Text
Compare it against the answer (I'm guessing in a data table), then call an update statement:
update scores set score = score + 1 where user = <user name>
or something like that. You can also increment a score field in a datarow, and then use the OLEDBDataAdapter.update statement to update it to the database.
Hope this helps,
Brian
|