求救!怎样获取table中控件的状态或值解决方法

求救!怎样获取table中控件的状态或值
做了一个教师评价表,有教师人数动态生成table,并在每个表格单元中加入了RadioButtoList控件,每个控件包含3个radioButton,表示3种不同的分数。现在的问题是我怎样才能知道学生选的是哪个分值,因为要进行每位老师的分数统计(哪位大虾具体讲一下)
    代码如下:
public   partial   class   assessTable   :   System.Web.UI.Page
{
        SqlConnection   mycon;
        protected   void   Page_Load(object   sender,   EventArgs   e)
        {
                if   (!Page.IsPostBack)
                {
                        mycon   =   databaseConnection.DBCon();
                        int   numrows;
                        int   numcells;
                        int   i   =   0;
                        int   j   =   0;
                        int   row   =   0;
                        TableRow   r;
                        TableCell   c;
                       
                        String[]   ITEM   =   new   string[]   {   "上课积极,不迟到 ",  
                                                                                      "对学生很负责, "+
                                                                                            "很友好,有问必答 ",
                                                                                      "教学严谨,学术过硬 ",  
                                                                                      "和蔼可亲 "   };
                     
                        RadioButton   rb   =   new   RadioButton();

                        DataSet   ds   =   new   DataSet();
                        mycon.Open();