Posted on: 11/6/2014 10:03:32 AM | Views : 413

Hi All,
I want to generate radio buttons in vertical repeat direction layout.
I have below code.
TableCell cell = new TableCell(); TableRow row = new TableRow(); for (int i = 0; i < 3; i++) { RadioButton radioButton = new RadioButton(); radioButton.ID = "rdb " + i.ToString(); radioButton.GroupName = "gp" + 1; cell.Controls.Add(radioButton); row.Cells.Add(cell); } tbl.Rows.Add(row); But its layout is horizontal.
How to make the layout in vertical direction.
Please Help,
Regards,
Jayesh(From India,Mumbai).

Go to the complete details ...