ASP.NET TableCell RowSpan 屬性
ASP.NET TableCell RowSpan 屬性

定義和用法
RowSpan 屬性用于設置或返回 Table 控件中 TableCell 橫跨的行數。
語法
<asp:TableCell RowSpan="num" runat="server">
Some content
</asp:TableCell>
Some content
</asp:TableCell>
屬性 | 描述 |
---|---|
num | 規定 TableCell 橫跨的行數。 |
實例
下面的實例把 RowSpan 屬性設置為 "2":
<form runat="server">
<asp:Table id="tab1" runat="server">
<asp:TableRow>
<asp:TableCell RowSpan="2">
Some Content
</asp:TableCell>
<asp:TableCell>
Some Content
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
Some Content
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
<asp:Table id="tab1" runat="server">
<asp:TableRow>
<asp:TableCell RowSpan="2">
Some Content
</asp:TableCell>
<asp:TableCell>
Some Content
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
Some Content
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
演示實例 ?

相關文章
- ASP.NET 教程
- ASP.NET
- ASP.NET Web Pages Razor
- ASP.NET Web Pages PHP
- ASP.NET 數據綁定
- ASP.NET Hashtable
- ASP.NET TableCell 控件
- HTML InputImage
- HTML Table 2
- ASP.NET HTML 控件 用 重復
- ASP.NET HTML 控件 Hashtable DropDownList
- C# 實例 顯示日期和時間
- C# 實例 While 循環
- VB 實例 If 條件
- VB 實例 使用 WebGrid 顯示數據
- VB 實例 使用數據庫 根據數組顯示條形圖
- ASP.NET Web Pages - Chart 幫助器
- C# 實例 使用數據庫 使用 WebGrid 顯示數據
- C# 實例 使用 Chart 幫助器 根據數據庫顯示餅圖
- ASP.NET Calendar Caption 屬性