是否有可能使用namespae System.Web.UI.HtmlControls動態創建html表列(< th> </th>)?ASP.NET動態創建HTMLTableColumns(標題)
2
A
回答
3
試試這個:
HtmlTable table1 = new HtmlTable();
// Set the table's formatting-related properties.
table1.Border = 1;
table1.CellPadding = 3;
table1.CellSpacing = 3;
table1.BorderColor = "red";
// Start adding content to the table.
HtmlTableRow row;
HtmlTableCell cell;
for (int i=1; i<=5; i++)
{
// Create a new row and set its background color.
row = new HtmlTableRow();
row.BgColor = (i%2==0 ? "lightyellow" : "lightcyan");
for (int j=1; j<=4; j++)
{
// Create a cell and set its text.
cell = new HtmlTableCell();
cell.InnerHtml = "Row: " + i.ToString()+ "<br />Cell: " + j.ToString();
// Add the cell to the current row.
row.Cells.Add(cell);
}
// Add the row to the table.
table1.Rows.Add(row);
}
// Add the table to the page.
this.Controls.Add(table1);
2
是在名字空間,你會想看看:
HtmlTable
HtmlTableRow
HtmlTableCell
用的是像這樣:
HtmlTable htmlTable = new HtmlTable(); //creating table object
HtmlTableRow htmlRow = new HtmlTableRow(); //creating row object
HtmlTableCell htmlTableCell = new HtmlTableCell(); //create cell
htmlTableCell.InnerHtml = "<b>Test Text Bolded</b>";//setting cell content
HtmlTableCell textTableCell = new HtmlTableCell(); //create cell
textTableCell.InnerText = "Test plain text"; //setting cell content
htmlRow.Cells.Add(htmlTableCell); //add cell to row
htmlRow.Cells.Add(textTableCell); //add cell to row
htmlTable.Rows.Add(htmlRow); // add row to table
1
HtmlTableCell = new HtmlTableCell("th");
相關問題
- 1. Asp.net動態頁面創建問題
- 2. 在ASP.NET(VB)上動態創建標籤
- 3. 在ASP.Net中創建動態div標記
- 4. 動態標籤創建問題
- 5. 創建表的列標題動態
- 6. ASP.NET:動態創建控件
- 7. ASP.NET動態GridView創建
- 8. 創建表動態asp.net VB
- 9. 動態創建ASP.Net頁面
- 10. 動態創建RadEditor asp.net
- 11. ASP.NET動態創建頁面
- 12. 創建asp.net動態子域
- 13. 如何在動態創建的ASP.net控件中動態創建ASP.net控件
- 14. 動態Div創建問題
- 15. 動態DOM創建問題
- 16. JMS動態創建主題
- 17. 動態創建錨標記
- 18. +動態創建標籤頁
- 19. 目標動態創建Div
- 20. 創建標題頁活動
- 21. 使用靜態標題創建動態大小的DIV框
- 22. 在asp.net中創建行標題gridview
- 23. asp.net中jquery的主頁動態標題
- 24. Asp.net Mvc:動態頁面標題
- 25. 如何在Matplotlib動畫中創建動態標題
- 26. 如何動態地創建與ASP.NET
- 27. VS2008/ASP.NET 3.5 - 如何創建動態webforms
- 28. 動態創建ASP.NET內容頁面
- 29. ASP.NET MVC:創建控件動態
- 30. 在asp.net中創建動態控件