Author: hassu | Posted on: 9/25/2008 11:24:37 AM | Views : 945

hello i need some help
i am trying to create a table dynamically but could not make it. Please if you can help me with that here is the code that im using
this is the aspx code
<asp:Table ID="table" runat="server" BorderStyle="Dashed" >
          </asp:Table> 
and in the aspx.cs file im writing at page_load()

table.Controls.Clear();
TableRow n_row = new TableRow();
            n_row.ForeColor = Color.Khaki;
            table.Controls.Add(n_row);
TableCell n_cell = new TableCell();
n_row.Controls.Add(n_cell);
I dont know what am i missing here but it is not showing me anything

...

Go to the complete details ...