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

定義和用法
RowSpan 屬性用于設(shè)置或返回 Table 控件中 TableCell 橫跨的行數(shù)。
語法
<asp:TableCell RowSpan="num" runat="server">
Some content
</asp:TableCell>
Some content
</asp:TableCell>
屬性 | 描述 |
---|---|
num | 規(guī)定 TableCell 橫跨的行數(shù)。 |
實(shí)例
下面的實(shí)例把 RowSpan 屬性設(shè)置為 "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>
演示實(shí)例 ?

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