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

ASP.NET RepeatLayout 屬性

定義和用法

RepeatLayout 屬性用于設(shè)置或獲取如何顯示在 CheckBoxList 中的項(xiàng)目。

語法

<asp:CheckBoxList RepeatLayout="mode" runat="server">
some content
</asp:CheckBoxList >
屬性 描述
mode

規(guī)定 CheckBoxList 中項(xiàng)目的布局。

可能的值:

  • Flow - 項(xiàng)目不顯示在表格中
  • Table - 默認(rèn)。項(xiàng)目顯示在表格中

實(shí)例

下面的例子設(shè)置了 CheckBoxList 控件的 RepeatLayout:

<form runat="server">
<asp:CheckBoxList id="cb1" runat="server" RepeatLayout="Flow">

Some content

</asp:CheckBoxList>
</form>

實(shí)例

設(shè)置 CheckBoxList 控件的 RepeatLayout