Posted on: 3/31/2011 2:10:43 AM | Views : 773

hi all,
I need to add a table to a web form, however, this form is in a page that refers to a master page. When I try:
            Label myLabel = new Label();
            myLabel.Text = "AAA";
            TableRow myTableRow = new TableRow();
            myTable.Rows.Add(myTableRow);
            TableCell myTableCell = new TableCell();
            myTableCell.Controls.Add(myLabel);
            myTableRow.Cells.Add(myTableCell);
            this.Form.Controls.Add(myTable);
I get the table added after ...

Go to the complete details ...