如何在页面上的两个位置同时显示相同的 DataPager 控件?

发布于 2024-07-30 00:59:14 字数 702 浏览 7 评论 0原文

我有一个如下所示的 DataPager 控件:

<asp:DataPager ID="page1" PagedControlID="ExperienceList" runat="server" PageSize="3" OnPreRender="page1_PreRender">
<Fields>
<asp:TemplatePagerField>
<PagerTemplate>
<asp:DropDownList ID="ddlPage" runat="server" AutoPostBack="true" CssClass="default"
OnSelectedIndexChanged="ddlPage_SelectedIndexChanged"></asp:DropDownList>
</PagerTemplate>
</asp:TemplatePagerField>
</Fields>
</asp:DataPager>

我已将此 DataPager 控件插入到我希望出现下拉列表的位置。

这一切都工作得很好,但我现在的问题是,我需要另一个下拉控件以完全相同的方式运行,但位于列表视图的底部以及位于顶部的这个控件。

有什么方法可以搭载这个现有的数据分页器,或者我是否必须在列表视图的底部创建一个完全独立的数据分页器并以某种方式将它们链接在一起?

I have a DataPager control that looks like this:

<asp:DataPager ID="page1" PagedControlID="ExperienceList" runat="server" PageSize="3" OnPreRender="page1_PreRender">
<Fields>
<asp:TemplatePagerField>
<PagerTemplate>
<asp:DropDownList ID="ddlPage" runat="server" AutoPostBack="true" CssClass="default"
OnSelectedIndexChanged="ddlPage_SelectedIndexChanged"></asp:DropDownList>
</PagerTemplate>
</asp:TemplatePagerField>
</Fields>
</asp:DataPager>

I have slotted this datapager control into a place where I want my dropdown to appear.

This is all working great, but my problem now is that I need another dropdown control to function in exactly the same way, but at the bottom of the listview as well as this one, which is at the top.

Is there any way I can piggyback this existing datapager, or do I have to create an entirely separate datapager at the bottom of the listview and somehow link them together?

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

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

发布评论

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

评论(1

一世旳自豪 2024-08-06 00:59:14

只需创建第二个数据分页器并将事件挂接到相同的事件处理程序

Just create a second data pager and hook the events up to the same event handlers

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