如何在page_load上的中继器内找到控制?

发布于 2024-12-04 10:39:24 字数 65 浏览 4 评论 0原文

我想在中继器内的 page_load 上找到一个 gridview 控件。我怎样才能找到它?请尽快回复我。提前致谢。

i want to find a gridview control on page_load inside a repeater.How can i find it? please reply me as soon as possible. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

挽清梦 2024-12-11 10:39:24

使用 ItemDataBound 访问ITemplate 并在那里找到控件。

这是一个例子:

protected void repeater_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
    if (e.Item.ItemType == ListItemType.Item ||
        e.Item.ItemType == ListItemType.AlternatingItem)
    {
        var data = e.Item.DataItem;
        var index = e.Item.ItemIndex;

        var gridView = e.Item.FindControl("gridView1") as GridView;
    }
}

Use ItemDataBound to access the ITemplate and find the control on there.

Here's an example:

protected void repeater_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
    if (e.Item.ItemType == ListItemType.Item ||
        e.Item.ItemType == ListItemType.AlternatingItem)
    {
        var data = e.Item.DataItem;
        var index = e.Item.ItemIndex;

        var gridView = e.Item.FindControl("gridView1") as GridView;
    }
}
儭儭莪哋寶赑 2024-12-11 10:39:24

像这样?

GridView gv = (GridView) repeater.FindControl("id-of-GridView);

Like this?

GridView gv = (GridView) repeater.FindControl("id-of-GridView);
黎歌 2024-12-11 10:39:24
     Repeater_bind()
        Dim count As Integer = rep_UnAssignComps.Items.Count
                        For j = 0 To count - 1
                    Dim grd As Gridview=  Dim rep_DataSimilarToBacthid As GridView = DirectCast(rep_UnAssignComps.Items(i).FindControl("rep_DataSimilarToBacthid"), GridView)

                Next
     Repeater_bind()
        Dim count As Integer = rep_UnAssignComps.Items.Count
                        For j = 0 To count - 1
                    Dim grd As Gridview=  Dim rep_DataSimilarToBacthid As GridView = DirectCast(rep_UnAssignComps.Items(i).FindControl("rep_DataSimilarToBacthid"), GridView)

                Next
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文