阿油
5 years ago
Work.asp:CheckBoxList/RadioButtonList
沒什麼研究過aspx,昨天遇到問題來稍微惡補一下Q_Q
-
RepeatLayout:
ASP.NET 4.0:"Table"(預設)、"Flow"、"OrderedList "、"UnorderedList"
ASP.NET 3.5(含)以下:"Table"(預設)、"Flow"
掰噗~ 正在
5 years ago
(筆記筆記) (p-nerd)
阿油
5 years ago
*RepeatLayout="Table"(預設)
結構:表格型態,以<td>包裹<input>+<label>
<td>內距:CellPadding="<Int>"
<td>間距:CellSpacing="<Int>"
-
*RepeatLayout="Flow"
結構:以 一個<span>包裹所有的<input>+<label>
阿油
5 years ago
*RepeatLayout="OrderedList"
結構:以 一個<ol>包裹<li>再包裹<input>+<label>
*使用時不能設置RepeatDirection="Horizontal"
-
*RepeatLayout="UnorderedList"
結構:以 一個<ul>包裹<li>再包裹<input>+<label>
*使用時不能設置RepeatDirection="Horizontal"
立即下載
阿油
5 years ago
*共同屬性:
水平垂直方向:RepeatDirection="Vertical(垂直,預設)/Horizontal(水平)"
*RepeatLayout="OrderedList"或"UnorderedList"時,不能設置RepeatDirection="Horizontal",會IIS錯誤XD
幾個折為一行:RepeatColumns="<Int>"