zoukankan      html  css  js  c++  java
  • c# 让repeater多列显示

    //前台

    代码
    <table>
    <tr>
    <asp:repeater id="Repeater1" runat="server" 
            onitemdatabound
    ="Repeater1_ItemDataBound">
    <ItemTemplate>
    <td><%#DataBinder.Eval(Container.DataItem,"thing")%></td>
    </ItemTemplate>
    </asp:repeater>
    </tr>
    </table>

    //后台

    代码
  • 相关阅读:
    抽象类使用细节
    super关键字
    JDK,JRE,JVM三者之间的爱恨情仇
    LinkedHashSet
    HashSet扩容成红黑树机制
    Set之HashSet
    finally关键字
    Hashcode方法
    equals方法和==的区别
    LinkedList
  • 原文地址:https://www.cnblogs.com/jxgxy/p/1614109.html
Copyright © 2011-2022 走看看