• Repeater 绑定


    前台容器Repeater的关键代码:

     <!--列表展示.开始-->
        <asp:Repeater ID="rptList" runat="server" onitemcommand="rptList_ItemCommand" OnItemDataBound="rptList_ItemDataBound">
        <HeaderTemplate>
        <table width="100%" border="0" cellspacing="0" cellpadding="0" class="msgtable">
          <tr>
              <th width="6%"  align="left">第一列</th>
              <th width="15%" align="left">第二列</th>

          </tr>
        </HeaderTemplate>
        <ItemTemplate>
          <tr>
                <td><%#Eval("第一列ID")%></td>
                <td><%#Eval("第二列ID")%></td>
            
            </tr>
        </ItemTemplate>
        <FooterTemplate>
            <%#rptList.Items.Count == 0 ? "<tr><td align=\"center\" colspan=\"7\">暂无记录</td></tr>" : ""%>
          </table>
        </FooterTemplate>
        </asp:Repeater>

    后台代码:

     DataSet _invWasteDs = 获得的数据;
                this.rptList.DataSource = _invWasteDs;
                this.rptList.DataBind();

  • 相关阅读:
    160-13. 罗马数字转整数
    159-118. 杨辉三角
    158-190. 颠倒二进制位
    157-461. 汉明距离
    156-412. Fizz Buzz
    155-278. 第一个错误的版本
    154-108. 将有序数组转换为二叉搜索树
    153-101. 对称二叉树
    152-234. 回文链表
    秒杀程序架构演进
  • 原文地址:https://www.cnblogs.com/northeastTycoon/p/2756722.html
Copyright © 2020-2023  润新知