亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

ASP.NET RowSpan 屬性

定義和用法

RowSpan 屬性用于設(shè)置或返回 Table 控件中 TableCell 橫跨的行數(shù)。

語法

<asp:TableCell RowSpan="num" runat="server">
Some content
</asp:TableCell>
屬性 描述
num 規(guī)定 TableCell 橫跨的行數(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>

實(shí)例

為 TableCell 控件設(shè)置 RowSpan 屬性