zoukankan      html  css  js  c++  java
  • Repeater绑定List泛型对象

    后台:

    public void BindData()
            {
                List<WeiBo> DataList = new List<WeiBo>();
                DataList = DBTools.GetPublishedWeiBo(user._id.ToString());
                Repeater_PubData.DataSource = DataList;
                Repeater_PubData.DataBind();
            }

    前台:

      <asp:Repeater ID="Repeater_PubData" runat="server">
                    <ItemTemplate>
                      <div class="contentItemKuang">
                        <div class="leftFace">
                            <img src="../Images/face.jpg" width="50px" height="50px" />
                        </div>
                        <div class="RightFont">
                            <%#((Model.WeiBo)Container.DataItem).Message %>
                            <p class="content_footer">
                                3月18日23:15 <span class="itemAction">转发 | 评论</span>
                            </p>
                        </div>
                    </div>
                    </ItemTemplate>
                    </asp:Repeater>

  • 相关阅读:
    CSS 文本
    javascript:void(0)的问题
    剑指offer
    牛课--C/C++
    Linux学习--第二波
    面经-csdn
    初学Linux
    二分查找法的实现和应用汇总
    vs2013下git的使用
    win10+vs2013+Qt5.4 安装方法
  • 原文地址:https://www.cnblogs.com/Xujg/p/4037176.html
Copyright © 2011-2022 走看看