.net的repeater标题绑定?
展开全部
repeater 用于在制作表头比较麻烦的情况下采用
datagrid 相对于上面来说就比较简单一点表头
datalist 用于下拉列表框
当然上面所有的都是由数据绑定这项功能的]
datagrid 相对于上面来说就比较简单一点表头
datalist 用于下拉列表框
当然上面所有的都是由数据绑定这项功能的]
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<asp:Repeater id="GViewCanceledMeetings" runat="server" >
<HeaderTemplate>
<table class="MeetingGrid" width="100%">
<tr>
<th>Name<th>
<th>Association<th>
<th>Phone<th>
</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr class="MTGRow">
<td><strong><span style="font-size:105%"><%# Eval("Name") %></span></strong></td>
<td><%# Eval("Association")%></td>
<td><strong>Phone</strong>: <%# Eval("Phone") %></td>
</tr>
</table>
<asp:HiddenField ID="hfEmail" runat="server" Value='<%# Eval("Email") %>' />
</td>
</tr>
</ItemTemplate>
<SeparatorTemplate><tr><td class="nohoverMeetingGrid"><hr size="2" noshade="noshade" color="#FFFFFF"></td></tr>
</SeparatorTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
enjoy~!!
<HeaderTemplate>
<table class="MeetingGrid" width="100%">
<tr>
<th>Name<th>
<th>Association<th>
<th>Phone<th>
</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr class="MTGRow">
<td><strong><span style="font-size:105%"><%# Eval("Name") %></span></strong></td>
<td><%# Eval("Association")%></td>
<td><strong>Phone</strong>: <%# Eval("Phone") %></td>
</tr>
</table>
<asp:HiddenField ID="hfEmail" runat="server" Value='<%# Eval("Email") %>' />
</td>
</tr>
</ItemTemplate>
<SeparatorTemplate><tr><td class="nohoverMeetingGrid"><hr size="2" noshade="noshade" color="#FFFFFF"></td></tr>
</SeparatorTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
enjoy~!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询