일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Oracle
- 시트 탭 사라짐
- 업비트
- 나만의 상점
- Kakao API Address
- 한글깨짐
- Banker's rounding
- rounding
- Excel
- 세로 스크롤 막대
- upbit
- Request.Form
- MS-SQL
- chart.js
- Banker's
- MSSQL
- Aspose.cells
- 일본여행
- .csv
- 스크롤 사라짐
- 썸머노트
- swift 화면전환
- league of legends
- Android
- MYSQL
- 가로 스크롤 막대
- python
- CSV
- 초딩수학
- LEFT JOIN
- Today
- Total
DBA
닷넷에서 동적으로 테이블을 생성 할 때 원하는 태그 생성 하기 본문
<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;}