如何将标签添加到ListViewItem?

时间:2009-05-03 14:00:33

标签: asp.net data-binding listview

我想使用嵌套的ListView控件实现提到this article的外观。但是,在我的场景中,我无法使用EntityDataSource控件,因此我手动绑定数据。

我的表:

Categories
  PK: UniqueId, Guid
  Name, string
  ParentId, Guid

<asp:ListView ID="CategoryList" runat="server" 
        onitemdatabound="CategoryList_ItemDataBound">
        <LayoutTemplate>
            <table>
                <asp:PlaceHolder ID="itemPlaceHolder" runat="server"></asp:PlaceHolder>
            </table>
        </LayoutTemplate>

        <ItemTemplate>
            <tr>
                <td colspan="2"><%# Eval("Name") %></td>
            </tr>
        </ItemTemplate>
    </asp:ListView>



protected void Page_Load(object sender, EventArgs e)
{
    using (PractiseEntities context = new PractiseEntities()) {
        var result = from categories in context.Categories
                     select categories;
        CategoryList.DataSource = result;
        CategoryList.DataBind();
    }
}

我想通过在“ParentId”不为null的项目中添加<td>标记来使子类别具有缩进。我的问题是如何在ItemDataBound事件中编辑生成的html标签?

1 个答案:

答案 0 :(得分:1)

你可以这样:

<ItemTemplate>
    <tr>
        <td colspan="2"><%# GetParentContent(Eval("ParentID")) %></td>
    </tr>
</ItemTemplate>
代码隐藏中的

protected string GetParentContent(object ParentID)
{
    if(ParentID!=null)
        ... return parent HTML ...
    else
        return "";
}