当前位置:首页>维修大全>综合>

asp.net中服务器控件table怎样动态生成表格(asp.net怎么查找table里面的控件)

asp.net中服务器控件table怎样动态生成表格(asp.net怎么查找table里面的控件)

更新时间:2023-12-24 06:38:18

asp.net中服务器控件table怎样动态生成表格

Tabletb=newTable();introw=3;//行数intcol=4;//列数for(inti=0;i<row;i++){TableRowtr=newTableRow();tb.Rows.Add(tr);for(intj=0;j<col;j++){TableCelltd=newTableCell();tr.Cells.Add(td);td.Text=i.ToString();}}

更多栏目