asp:DataPager onclick 事件

发布于 2024-12-06 21:20:27 字数 164 浏览 0 评论 0原文

我正在使用 .Net 列表视图和数据分页器来启用列表视图的分页。

我能够将分页设置为列表视图的完美工作,但我希望当用户单击数据分页器中的任何页码时调用一个方法。

我想每当调用页码时执行一些操作。我想没有 onclick 事件,那么有没有其他方法可以实现这一点。

谢谢

I am working with the .Net List view along with a data pager to enable pagination for a list view.

I am able to set the pagination working perfectly for the list view but I wish to have a method being called when ever the user clicks on any of the page numbers in the data pager.

I want to perform some operation whenever the page number is called. I guess there is no onclick event, so is there any other way by which this is possible.

Thanks

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

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

发布评论

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

评论(2

抽个烟儿 2024-12-13 21:20:27

您可以将其设置为图像按钮或链接按钮。

我有一段代码..你只需要实现它。

您可以设置链接和点击事件。

foreach (DataPagerFieldItem dpfItem in dtpPaging.Controls)
            {
                foreach (Control cPagerControls in dpfItem.Controls)
                {
                    if (cPagerControls is ImageButton)
                    {
                        ImageButton imgNavigation = cPagerControls as ImageButton;
                        imgNavigation.PostBackUrl = CommonLogic.GetFormattedURL(strPageUrl);
                        imgNavigation.Click += new ImageClickEventHandler(imgNavigation_Click);

                    }
                    if (cPagerControls is LinkButton)
                    {
                        LinkButton lnkNumbers = cPagerControls as LinkButton;
                        lnkNumbers.PostBackUrl = CommonLogic.GetFormattedURL(strPageUrl);
                        lnkNumbers.Click += new EventHandler(lnkNumbers_Click);
                    }
                }
            }

you can set it as imagebutton or linkbutton.

I have piece of code.. you just need to implement it.

you can set link and click event.

foreach (DataPagerFieldItem dpfItem in dtpPaging.Controls)
            {
                foreach (Control cPagerControls in dpfItem.Controls)
                {
                    if (cPagerControls is ImageButton)
                    {
                        ImageButton imgNavigation = cPagerControls as ImageButton;
                        imgNavigation.PostBackUrl = CommonLogic.GetFormattedURL(strPageUrl);
                        imgNavigation.Click += new ImageClickEventHandler(imgNavigation_Click);

                    }
                    if (cPagerControls is LinkButton)
                    {
                        LinkButton lnkNumbers = cPagerControls as LinkButton;
                        lnkNumbers.PostBackUrl = CommonLogic.GetFormattedURL(strPageUrl);
                        lnkNumbers.Click += new EventHandler(lnkNumbers_Click);
                    }
                }
            }
半世晨晓 2024-12-13 21:20:27

您可以将处理程序绑定到 OnPagePropertiesChanging 列表视图的事件。 PagePropertiesChangingEventArgs 对象作为参数传递给处理程序,其中包含 MaximumRowsStartRowIndex 属性。您可以使用它们来计算当前页码。它非常简单,并且不需要像 sikender 提出的解决方案那样进行代码隐藏事件绑定。

You can bind a handler to the OnPagePropertiesChanging Event of the List View. A PagePropertiesChangingEventArgs object is passed to the handler as argument which contains MaximumRows and StartRowIndex properties. You can use these to calculate the current page number. It is very easy and requires no code-behind event binding as the solution proposed by sikender.

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