0

我在运行时将数据绑定到转发器控件时遇到问题,我知道如何在 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>
4

2 回答 2

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();

在项目数据绑定上:

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();

            }
        }
于 2013-01-15T10:05:58.043 回答
0

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

于 2013-01-15T09:58:52.107 回答