VB Code:
td = New TableCell Dim ctl As New RadioButton ctl.ID = CType(objDataReader.GetValue(0), String) ctl.GroupName = "AdminListRadio" page. Page.FindControl("Frm").Controls.Add(ctl) td.Text = " " tr.Cells.Add(td)
Is there any way to get it to insert the radio button into the cell instead of just the end of the form?
thanks
Dimava




Reply With Quote