DBA

닷넷에서 동적으로 테이블을 생성 할 때 원하는 태그 생성 하기 본문

[3] Development/ASP.NET

닷넷에서 동적으로 테이블을 생성 할 때 원하는 태그 생성 하기

코볼 2014. 8. 26. 10:17
728x90
반응형
SMALL

 

 

<table class="basic_table"> : Table tblList = new Table() { CssClass = "basic_table", Width = tblWidth };

<thead> : TableHeaderRow tblHeaderRow1 = new TableHeaderRow() { TableSection = TableRowSection.TableHeader };

<tr>

<th></th> : tblHeaderRow1.Cells.Add(new TableHeaderCell() { Text = "", ColumnSpan = 4, Width = colSpanWidth });

</tr>

<tr>

<td></td> : tblHeaderRow2.Cells.Add(new TableCell() { Text = "", ColumnSpan = 4, Width = colSpanWidth });

</tr>

</thead>

 

<tbody> : TableRow tblRow = new TableRow();

<tr>

<th class="t1"></th> : tblRow.Cells.Add(new TableHeaderCell() { Text = "", RowSpan = division1RowspanInterval, Width = colWidth, CssClass = "t1" });

<td></td> : tblRow.Cells.Add(new TableCell() { Text = "", Width = colWidth });

</tr>

</tbody>

</table>

 

 

테이블객체에 인덱스를 주고 로우추가 : tblList.Rows.AddAt(0, tblHeaderRow1);

테이블객체에 인덱스 없이 로우추가 : tblList.Rows.Add(tblRow);

패널객체에 테이블 추가 : indexAnalysisTable.Controls.Add(tblList);

 

아래 스타일시트들 적용 시키려고 좀 찾아봤음.

 

 

.basic_table thead th {background-color:#fef8f9; padding:5px 0px; color:#ed1c24; border-bottom:1px solid #e4e4e4; border-right:1px solid #e4e4e4; font-size:10pt;}

 

.basic_table thead td {background-color:#fafafa; border-bottom:1px solid #e4e4e4; padding:5px 0px;  border-right:1px solid #e4e4e4; text-align:center; color:#222;}

 

.basic_table tbody th.t1 { background:#fef8f9; color:#ed1c24; font-weight:normal;}

 

.basic_table tbody td {border-bottom:1px solid #e4e4e4; border-right:1px solid #e4e4e4; text-align:center; padding:3px 0px 5px 0px;}

 

 

 

 

 

 

728x90
반응형
LIST
Comments