void InsertTableRow(int row, int col)
{
for(int i=0; i<row; i++)
{
TableRow tr = new TableRow();
TableCell tcel;
for(int i=0; i<col; i++)
{
tcel = new TableCell();
tcel.Text = "";
tr.Cells.Add(tcel);
}
TableScore.Rows.Add(tr);
}
}
אין תגובות:
הוסף רשומת תגובה