Ciao a tutti io mi creo una radiobuttonlist prendendo i dati dal Db:

Ora come faccio a recuperare il valore selezionato?
Ecco il codice:

codice:
<asp:RadioButtonList ID="lista_player" runat="server" CssClass="text_whiteB">
</asp:RadioButtonList>
codice:
 strsql = "SELECT BestPlayerVoti.id_bestplayer, BestPlayerVoti.id_bestvoti, Rose.id_rosa, Rose.nome, Rose.cognome FROM BestPlayerVoti, Rose WHERE BestPlayerVoti.id_bestplayer=" & id_best & " and BestPlayerVoti.id_player=Rose.id_rosa"
            cmdSql = New OleDbCommand(strsql, conn)
            rs = cmdSql.ExecuteReader()
            lista_player.DataSource = rs
            lista_player.DataTextField = "cognome"
            lista_player.DataValueField = "id_bestvoti"
            lista_player.DataBind()
            rs.Close()
Grazie a tutti