在运行时将数据绑定到转发器

时间:2013-01-15 09:20:04

标签: c# asp.net repeater

我遇到了在运行时将数据绑定到转发器控件的问题,我知道如何在aspx中绑定数据,但无法弄清楚如何在运行时执行此操作。我有未知数量的行要绑定,并且在每一行中我都有未知数量的项目,这个结构是我在后面的代码中将它分配给转发器数据源的列表列表。但是要获得我想要的格式我应该在代码后面的ItemDataBound事件中编写什么而不是代码?

<asp:Repeater ID="RepeaterCategories" runat="server" OnItemCreated="RepeaterCategories_ItemCreated" OnItemDataBound="R1_ItemDataBound">
<ItemTemplate>
<asp:LinkButton ID="parent1Link" runat="server" ForeColor="#570000" CommandArgument='<% #Eval("ParentID1") %>'
Text='<% #Eval("ParentName1") %>' Font-Size="Small" Font-Underline="False" Font-Bold="True"
Font-Names="Arial" PostBackUrl='<% #CategoryId(Eval("ParentID1")) %>'>
 </asp:LinkButton>
&nbsp;
 <asp:Image ID="Image3" runat="server" Width="7px" ImageUrl="~/Img/next.png" />
&nbsp;
</ItemTemplate>
</asp:Repeater>

2 个答案:

答案 0 :(得分:1)

以下是您应该做的一个示例:

您的aspx页面

<asp:Repeater ID="rpt" runat="server" OnItemDataBound="rpt_ItemDataBound">
                                <ItemTemplate>
                                    <li>
                                        <img id="imgArticle" runat="server"><p>
                                            <a href="#" id="aTitle" runat="server"></a>
                                        </p>
                                        <span class="grey">
                                            <asp:Literal ID="litCountry" runat="server"></asp:Literal>
                                            <asp:Literal ID="litTime" runat="server"></asp:Literal>
                                        </span></li>
                                </ItemTemplate>
                            </asp:Repeater>

绑定转发器:

rpt.DataSource = articles; // articles is a Generic List which has data
rpt.DataBind();

on Item databound:

protected void rpt_ItemDataBound(object sender, RepeaterItemEventArgs e)
        {
            if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
            {
                var item = (Article)e.Item.DataItem;
                if (item.Title != null)
                    ((HtmlAnchor)e.Item.FindControl("aTitle")).InnerText = item.Title;
                if (item.Country != null)
                {
                    if (item.Country.Length > 0)
                        ((Literal)e.Item.FindControl("litCountry")).Text = item.Country + " ,";
                }
                ((Literal)e.Item.FindControl("litTime")).Text = item.CreationDate.ToString();

            }
        }

答案 1 :(得分:0)

如果你有一个特别复杂的安排,你有几个选择。您可以使用带有AutoGenerated列的GridView,并使用OnItemDataBound来微调事物。或者你当然可以将原始HTML输出到DIV中。