如何在 ASP:Repeater #Eval 中按索引而不是按列名获取值

本文关键字:获取 索引 ASP Repeater #Eval | 更新日期: 2023-09-27 18:36:22

我正在尝试使用列索引而不是在我的中继器控件中使用 <%#Eval('foo')%> 表达式(或任何其他方式)获取列名来获取数据。这是我的代码:

页:

<asp:Repeater ID="rptrHeatingNavien" runat="server">
    <ItemTemplate>
        <li class="icon-font"><a href="/Products/?Id=<%#Eval('get-data-by-index[0]')%>><a><%#Eval('get-data-by-index[1]')%></a></li>
    </ItemTemplate>
    </asp:Repeater>

代码隐藏:

string connectionString = ConfigurationManager.ConnectionStrings["connection"].ConnectionString;
SqlConnection sqlCon = new SqlConnection(connectionString);
SqlDataAdapter sqlDa = new SqlDataAdapter("SELECT * FROM Products", sqlCon);
DataSet ds = new DataSet();
sqlDa.Fill(ds);
rptr.DataSource = dsSideMenu.Tables[0].Select("category = '1-1-1'");
rptr.DataBind();

这里的问题是,由于某种原因(我很乐意知道为什么),我不能对绑定到中继器控件的行使用列名。(我仔细检查了他们是否真的有数据)。因此,摆在我面前的唯一解决方案是通过它们的列索引获取它们,我不知道该怎么做。有什么解决办法吗?

如何在 ASP:Repeater #Eval 中按索引而不是按列名获取值

假设您正在绑定SuperItem对象的集合(SuperItem类型支持基于索引的访问),您可以处理ItemDataBound事件:

<asp:Repeater ID="rptrHeatingNavien" runat="server" OnItemDataBound="rptrHeatingNavien_ItemDataBound">
    <ItemTemplate>
        <li class="icon-font">
            <asp:HyperLink runat="server" ID="productLink" />
    </ItemTemplate>
</asp:Repeater>

代码隐藏:

protected void rptrHeatingNavien_ItemDataBound(object sender, EventArgs e)
{
    if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
    {
        var item = (SuperItem) e.Item.DataItem;
        var link = (HyperLink) e.Item.FindControl("productLink");
        link.NavigateUrl = string.Format("/Products/?Id={0}", item[0].ToString());
        link.Text = item[1].ToString();
    }
}