入图,做的调查问卷,现在的问题时想将他们对齐
我的代码
                    Dim t1 As New RadioButtonList
                    t1.Font.Size = 9
                    Dim dt1 As New TableRow
                    t1.ID = "t1" & Question_Item_ID.ToString
                    t1.DataSource = ds02.Tables(0)
                    t1.DataValueField = "Option_Value_ID"
                    t1.DataTextField = "Option_Value_Name"
                    '设置生成答案的设置
                    t1.RepeatDirection = RepeatDirection.Horizontal                    't1.CellSpacing = 15
                    't1.CellPadding = 10
                    t1.RepeatColumns = ds03.Tables(0).Rows(0).Item("NumInRow")                    t1.Width = Unit.Pixel(650)
                    t1.DataBind()radiobuttonlist控件后台设计