A while ago, I had to create a binary table for data statistics. I didn't expect a good idea. Considering that the data row is not too big, I just wrote my own songs. The ASP: Table control is used.
To be honest, this guy is really amazing.
The basic usage is as follows:
// Generate a row from the table.
Tablerow myfirstrow = table1.rows [0];
// Regenerate a cell
Tablecell myfirstcell = new tablecell ();
// Specify the length of the crossed column, which is similar to HTML;
Myfirstcell. columnspan = mysencondcolumnal. Length + 1;
// Specify the cell Border width.
Myfirstcell. borderwidth = 1;
// Specify the location of the cell data.
Myfirstcell. horizontalalign = horizontalalign. Center;
// Add data to a cell.
Myfirstcell. Controls. Add (New literalcontrol (biaoti [I]. tostring ()));
// Add cells to row, OK, and game over.
Myfirstrow. cells. Add (myfirstcell );
Of course, there are more detailed operations. NET Friendly tips. Don't let me talk about it.
In combination with your ideas, you will certainly be able to make good results.