您的位置:首页 > 编程语言 > ASP

asp.net中repeater嵌套CheckBoxList,RadioButtonList来完成投票

2010-06-13 11:20 260 查看
我们在做复式投票的时候。会遇到标题和选项嵌套的样子,下面我把我的代码放上来。 1,投票选择前台页面 view plaincopy to clipboardprint?
<table height="286" cellSpacing="0" cellPadding="0" width="1000" align="center" bgColor="#ffffff"

border="0">

<tbody>

<tr>

<td vAlign="top" height="286">

<div align="left">

<table height="32" cellSpacing="0" cellPadding="0" width="968" align="center" border="0">

<tbody>

<tr>

<td>

<div align="center"></div>

<div align="center"><strong><%=Title%></strong><br>

</div>

</td>

</tr>

</tbody>

</table>

<table cellSpacing="0" cellPadding="0" width="915" align="center" border="0">

<tbody>

<tr>

<td background="../../images/house4_07.jpg" height="1"><FONT face="宋体"></FONT></td>

</tr>

<tr>

<td>

<table cellSpacing="0" cellPadding="0" width="915" border="0">

<asp:repeater id="Repeater1" Runat="server">

<ItemTemplate>

<tr>

<td>

<%# DataBinder.Eval(Container, "DataItem.FVoteName") %>

<table width="85%" align="center" border="1" bordercolor="#D6E7FF" cellpadding="0" cellspacing="0">

<tr>

<td>

<asp:CheckBoxList id="cb" Runat="server" Visible="False"></asp:CheckBoxList>

<asp:RadioButtonList ID="rb" Runat="server" Visible="False"></asp:RadioButtonList>

<asp:TextBox ID="tb" TextMode="MultiLine" Columns="40" Rows="4" Runat="server" Visible="False"></asp:TextBox>

<input type="hidden" id="hb" runat="server" />

</td>

</tr>

</table>

</td>

</tr>

</ItemTemplate>

</asp:repeater></table>

</td>

</tr>

<tr>

<td align="center"><asp:button id="btnAdd" runat="server" Text="提交"></asp:button></td>

</tr>

</tbody>

</table>

</div>

<div align="right"></div>

</td>

</tr>

</tbody>

</table>

<table height="286" cellSpacing="0" cellPadding="0" width="1000" align="center" bgColor="#ffffff"

border="0">

<tbody>

<tr>

<td vAlign="top" height="286">

<div align="left">

<table height="32" cellSpacing="0" cellPadding="0" width="968" align="center" border="0">

<tbody>

<tr>

<td>

<div align="center"></div>

<div align="center"><strong><%=Title%></strong><br>

</div>

</td>

</tr>

</tbody>

</table>

<table cellSpacing="0" cellPadding="0" width="915" align="center" border="0">

<tbody>

<tr>

<td background="../../images/house4_07.jpg" height="1"%
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐