0

我正在尝试使用列索引获取数据,而不是使用中继器控件中的 <%#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();

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

4

1 回答 1

0

假设您正在绑定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();
    }
}
于 2015-01-04T21:18:28.650 回答