将数据绑定到gridview内的转发器

时间:2011-07-06 10:12:45

标签: c# asp.net

你有一个在网格视图内的转发器。当我将数据绑定到gridview时,数据绑定到gridview内的控制,但转发器没有绑定。

<asp:GridView ID="gvMain" runat="server" AllowPaging="false" AutoGenerateColumns="false"
          Width="200px" Height="200px" 
    onrowdatabound="gvMain_RowDataBound">
        <Columns>
            <asp:TemplateField>
                <ItemTemplate>
                    <asp:LinkButton ID="lbtnDptName" runat="server" Text='<%# Eval("deptName")%>'></asp:LinkButton>
                    <asp:Label ID="lblDptDesc" runat="server" Text = "sdfsdfsdfdsf"></asp:Label>
                    <asp:Repeater ID="rtFunctions" runat="server" OnItemDataBound="rtFunctions_ItemDataBound" >
                        <HeaderTemplate>
                            <table>
                        </HeaderTemplate>
                        <ItemTemplate>
                            <tr>
                                <td>
                                    <asp:LinkButton ID="lbtnFunctions" runat="server" ></asp:LinkButton>
                                    <asp:Label ID="lbltemp" Style="border:1px solid blue;width:20px;height:20px;background:green" runat="server" Text="TempLabel" ></asp:Label>
                                </td>
                            </tr>
                        </ItemTemplate>
                        <FooterTemplate>
                            </table>
                        </FooterTemplate>
                    </asp:Repeater>

                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>
页面加载中的

gvMain.DataSource = objDeptColl;
                    gvMain.DataBind();

转发器的Codebehind:

protected void gvMain_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            FunctionCollection objTempFuncColl = new FunctionCollection();
            objTempFuncColl = (FunctionCollection)Cache["objFuncColl"];
            Repeater rt = (Repeater)e.Row.FindControl("rtFunctions");

            if (e.Row.RowType == DataControlRowType.DataRow && objTempFuncColl.Count !=0 )
            {
                rt.DataSource = objTempFuncColl;
                rt.DataBind();
            }
        }
        protected void rtFunctions_ItemDataBound(object sender, RepeaterItemEventArgs e)
    {
        FunctionCollection objTempFuncColl = new FunctionCollection();
        objTempFuncColl = (FunctionCollection)Cache["objFuncColl"];
        Repeater rt = (Repeater)e.Item.FindControl("rtFunctions");
        if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
        {
            foreach (Functions f in objTempFuncColl)
            {
                LinkButton lnk = (LinkButton)e.Item.FindControl("lbtnFunctions");
                lnk.Text = f.funcName;
            }
        }
    }

gridview中的linkbutton是绑定,但转发器中的linkbutton没有绑定。

3 个答案:

答案 0 :(得分:1)

问题似乎与您的转发器ondatabound功能有关。

    FunctionCollection objTempFuncColl = new FunctionCollection();
    objTempFuncColl = (FunctionCollection)Cache["objFuncColl"];

然后不需要第一行,因为您将其替换为缓存的内容,如果缓存已过期或已清除,则可能为null。

对于转发器中的每一行,链接将设置为objtempfunccoll中的最后一个值。

除了lnk.Text = f.funcName;之外,你真的不需要任何功能(你需要从dataitem中转换f)

当你数据绑定到gridview时,会为每一行调用ondatabound。你有这个连线。对于每一行,您现在需要找到转发器,设置其数据源(我们称之为内部集合)&amp;在转发器上调用数据绑定器。这将导致调用转发器上的ondatabound,但container.dataitem现在指向内部集合中的每个项目。我们可以直接使用它,将container.dataitem转换为内部集合列表的任何类型。

protected void gvMain_RowDataBound(object sender, GridViewRowEventArgs e)
{
    FunctionCollection objTempFuncColl = (FunctionCollection)Cache["objFuncColl"];
    Repeater rt = (Repeater)e.Row.FindControl("rtFunctions");

    if (e.Row.RowType == DataControlRowType.DataRow && objTempFuncColl.Count !=0 )
    {
        rt.DataSource = objTempFuncColl;
        rt.DataBind();
    }
}

protected void rtFunctions_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
    lnk.Text = ((Functions)e.Item.DataItem).funcName;
}

西蒙

答案 1 :(得分:0)

您似乎没有在任何此代码中绑定转发器。您可能有一些代码将数据绑定到GridView控件,但这不会自动将任何内容绑定到ItemTemplate中的转发器。

答案 2 :(得分:0)

为什么不在aspx中进行数据绑定,留下空代码:

<asp:GridView ID="gvMain" runat="server" AllowPaging="false" AutoGenerateColumns="false"
          Width="200px" Height="200px">
        <Columns>
            <asp:TemplateField>
                <ItemTemplate>
                    <asp:LinkButton ID="lbtnDptName" runat="server" Text='<%# Eval("deptName")%>'></asp:LinkButton>
                    <asp:Label ID="lblDptDesc" runat="server" Text = "sdfsdfsdfdsf"></asp:Label>
                    <asp:Repeater ID="rtFunctions" runat="server" DataSource='<%# Cache["objFuncColl"] %>' >
                        <HeaderTemplate>
                            <table>
                        </HeaderTemplate>
                        <ItemTemplate>
                            <tr>
                                <td>
                                    <asp:LinkButton ID="lbtnFunctions" runat="server" Text='<%# Eval("funcName") %>' ></asp:LinkButton>
                                    <asp:Label ID="lbltemp" Style="border:1px solid blue;width:20px;height:20px;background:green" runat="server" Text="TempLabel" ></asp:Label>
                                </td>
                            </tr>
                        </ItemTemplate>
                        <FooterTemplate>
                            </table>
                        </FooterTemplate>
                    </asp:Repeater>

                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>