如何从列表视图中提取一种项目

时间:2011-06-16 14:58:28

标签: c# asp.net listview

更具体地说,我希望能够将ListView的项目模板中的标签收集到列表中。

这是我最近的尝试,遗憾的是我仍然没有做到这一点。

foreach (Label lbl in ListView.Items.Where(r => r.ItemType == Label))

这是我的ASP控件:

<asp:ListView ID="ListView1" runat="server" Visible="false" ItemPlaceholderID="phItem"
    OnItemDataBound="ListView1_ItemDataBound">
    <LayoutTemplate>
        <html>
        <head>
        </head>
        </head>
        <body>
            <table>
                <asp:PlaceHolder ID="phItem" runat="server" />
            </table>
        </body>
        </html>
    </LayoutTemplate>
    <ItemTemplate>
        <tr>
            <td>
                <asp:Label ID="lblChecklist" runat="server" />
            </td>
            <td>
                <asp:Label ID="lblCompliant" runat="server" />
            </td>
            <td>
                <asp:Label ID="lblNonCompliant" runat="server" />
            </td>
            <td>
                <asp:Label ID="lblNotApplicable" runat="server" />
            </td>
            <td>
                <asp:Label ID="lblNotComplete" runat="server" />
            </td>
            <td>
                <asp:Label ID="lblTotal" runat="server" />
            </td>
        </tr>
    </ItemTemplate>
    <EmptyDataTemplate>
        There are not results that match your input paramaters.
    </EmptyDataTemplate>
</asp:ListView>

我一直在寻找标签,现在当我在运行时查看ListView1.Items时,我发现ListView1.Items.Count = 0。

我可以通过他们的名字单独拉出标签,但我想拉它们以便我可以摆脱硬编码。

1 个答案:

答案 0 :(得分:1)

我认为你想要的LINQ语句是这样的:

var myLabels = listView1.Items
    .Where(i => i.ItemType == ListViewItemType.DataItem)
    .Select(a => a.FindControl("myLabel"));

您希望在每个项目上使用FindControl来访问Label中添加的ItemTemplate控件。请注意,Items只是ListViewDataItems的列表,因此您无法直接选择标签,即使它们是模板中唯一的标签。

这是一个完整的工作示例,我把它放在一起。

<%@ Page Language="C#" AutoEventWireup="true" %>
<html>
<body>
    <form id="form1" runat="server">
        <asp:ListView ID="listView1" runat="server">
            <ItemTemplate>
                <asp:Label ID="myLabel" Text="<%# Container.DataItem %>" runat="server" /><br />
            </ItemTemplate>
        </asp:ListView>
        <asp:Button ID="btnGatherLabels" Text="Gather Labels" OnClick="btnGatherLabels_Click" runat="server" />
    </form>
</body>
</html>
<script runat="server">
    protected void Page_Load(object sender, EventArgs e)
    {
        if(!Page.IsPostBack)
        {
            var myItems = new[] { "item1", "item2", "item3" };
            listView1.DataSource = myItems;
            listView1.DataBind();
        }
    }

    public void btnGatherLabels_Click(object sender, EventArgs e)
    {
        var myLabels = listView1.Items
                        .Where(i => i.ItemType == ListViewItemType.DataItem)
                        .Select(a => a.FindControl("myLabel"));
        foreach(Label myLabel in myLabels)
            Response.Write(string.Concat(myLabel.Text, "<br />"));
    }
</script>

修改
建立我之前的例子,假设ItemTemplate有多个标签:

<ItemTemplate>
    <asp:Label ID="myLabel1" Text="Label Here:" runat="server" /> 
    <asp:Label ID="myLabel2" Text="<%# Container.DataItem %>" runat="server" /> 
    <asp:TextBox ID="filler" runat="server" /><br />
</ItemTemplate>

以下代码将返回并显示每个模板中每个标签的文本:

public void btnGatherLabels_Click(object sender, EventArgs e)
{
    var myLabelCols = listView1.Items
        .Where(i => i.ItemType == ListViewItemType.DataItem)
        .Select(a => 
            a.Controls.Cast<Control>()
                .Where(b => b.GetType().Equals(typeof(Label)))
        );
    foreach (var myLabels in myLabelCols)
        foreach (Label myLabel in myLabels)
            Response.Write(string.Concat(myLabel.Text, "<br />"));
}

我不确定您需要如何使用此数据,因此我没有将它们连接在一个列表中。 myLabelCols中的每个元素都包含该模板中所有标签的列表。