| Author: Praveen 05 Sep 2008 | Member Level: Gold | Rating: Points: 2 |
here is the link where u can create controls and rows dynamically
http://www.dotnetspider.com/forum/168961-To-Praveen.aspx
hope this will help u
|
| Author: Vidhya 05 Sep 2008 | Member Level: Gold | Rating: Points: 2 |
Hi,
Use this code:
TableCell cell = new TableCell(); TableRow row = new TableRow(); row.Cells.Add(cell);
Table t = new Table(); t.Rows.Add(row);
Regards, Vidhya
|