HtmlTableCell 伺服器控制項宣告式語法
建立伺服器端控制項,使其對應至 <td> 和 <th> HTML 項目,並且允許您處理表格中的儲存格。
<td|th
EnableViewState="False|True"
Id="string"
Visible="False|True"
OnDataBinding="OnDataBinding event handler"
OnDisposed="OnDisposed event handler"
OnInit="OnInit event handler"
OnLoad="OnLoad event handler"
OnPreRender="OnPreRender event handler"
OnUnload="OnUnload event handler"
runat="server"
>
CellContent
</td|/th>
備註
使用 HtmlTableCell 類別,對 <td> 和 <th> HTML 項目進行設計程式。 <td> 項目表示資料儲存格,<th> 項目則表示標題儲存格。 請注意,<th> 儲存格的內容一定是粗體和對齊中央。
HtmlTableCell 類別允許您控制每個個別儲存格的外觀。 您可以各別設定 BgColor、BorderColor、Height 和 Width 屬性,以控制儲存格的背景色彩、框線色彩、高度和寬度。
注意
同一列上的儲存格共用相同高度。列上最高儲存格會決定列上所有儲存格的高度。
儲存格內容的水平和垂直對齊方式是由各別設定 Align 和 VAlign 屬性所控制。 您也可以設定 NoWrap 屬性,指定文字是否自動延伸到儲存格的下一行。
HtmlTableCell 類別允許您設定 ColSpan 和 RowSpan 屬性以合併儲存格。 ColSpan 屬性可讓您控制儲存格要佔用多少欄,RowSpan 屬性則指定儲存格佔用的列數。
注意
合併儲存格時,請確定表格中的每一列長度是相同的。並請確定每欄的高度都是相同的。否則,表格可能無法如預期般顯示。
範例
下列範例示範如何使用 HtmlTableCell 物件修改 HtmlTable 控制項中的儲存格內容。
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlTableCell Control</title>
<script runat="server">
Sub Button_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim i As Integer
Dim j As Integer
' Iterate through the rows of the table.
For i = 0 To Table1.Rows.Count - 1
' Iterate through the cells of a row.
For j = 0 To Table1.Rows(i).Cells.Count - 1
' Change the inner HTML of the cell.
Table1.Rows(i).Cells(j).InnerHtml = "Row " & i.ToString() _
& ", Column " & _
j.ToString()
Next j
Next i
End Sub
</script>
</head>
<body>
<form id="Form1" runat="server">
<h3>HtmlTableCell Example</h3>
<table id="Table1"
style="border-width:1; border-color:Black"
runat="server">
<tr>
<td>
Cell 1
</td>
<td>
Cell 2
</td>
</tr>
<tr>
<td>
Cell 3
</td>
<td>
Cell 4
</td>
</tr>
</table>
<br /><br />
<input id="Button1" type="button"
value="Change Table Contents"
onserverclick="Button_Click"
runat="server"/>
</form>
</body>
</html>
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlTableCell Control</title>
<script runat="server">
void Button_Click(Object sender, EventArgs e)
{
// Iterate through the rows of the table.
for (int i=0; i<=Table1.Rows.Count - 1; i++)
{
// Iterate through the cells of a row.
for (int j=0; j<=Table1.Rows[i].Cells.Count - 1; j++)
{
// Change the inner HTML of the cell.
Table1.Rows[i].Cells[j].InnerHtml = "Row " + i.ToString() +
", Column " +
j.ToString();
}
}
}
</script>
</head>
<body>
<form id="Form1" runat="server">
<h3>HtmlTableCell Example</h3>
<table id="Table1"
style="border-width:1; border-color:Black"
runat="server">
<tr>
<td>
Cell 1
</td>
<td>
Cell 2
</td>
</tr>
<tr>
<td>
Cell 3
</td>
<td>
Cell 4
</td>
</tr>
</table>
<br /><br />
<input id="Button1" type="button"
value="Change Table Contents"
onserverclick="Button_Click"
runat="server"/>
</form>
</body>
</html>