我已经创建了一个带有上一个和下一个链接的 ajax 页面自定义控件,现在当我向控件添加一个下拉列表时,它无法按预期工作..
我使用了代码形式http://www.flixon.com/Articles/Custom-ASPNET-Data-Pager-Control-22.aspx
当我添加下拉菜单时,在选定的索引上更改上一个和下一个按钮会消失。我相信这是因为我在预渲染事件中绑定了下拉列表
我已经创建了一个带有上一个和下一个链接的 ajax 页面自定义控件,现在当我向控件添加一个下拉列表时,它无法按预期工作..
我使用了代码形式http://www.flixon.com/Articles/Custom-ASPNET-Data-Pager-Control-22.aspx
当我添加下拉菜单时,在选定的索引上更改上一个和下一个按钮会消失。我相信这是因为我在预渲染事件中绑定了下拉列表
除了在预渲染事件中为分页绑定下拉列表,您还可以在绑定网格时绑定它。
if (gridView.BottomPagerRow != null)
{
GridViewRow myGridViewRow = gridView.BottomPagerRow;
DropDownList ddCurrentPage = (DropDownList)myGridViewRow.Cells[0].FindControl("ddCurrentPage");
//To do to bind Drop down
}
并且您还可以显式调用下拉选定的索引更改事件
这是寻呼机模板的代码
<PagerTemplate>
<asp:Button runat="server" ID="imgPagePrevious" CssClass="Pagingbutton" Text="<"CommandArgument="Prev" CommandName="Page" OnCommand="imgPagePrevious_Command" />
<asp:DropDownList ID="ddCurrentPage" runat="server" CssClass="PagingDrop" AutoPostBack="True" OnSelectedIndexChanged="ddCurrentPage_SelectedIndexChanged">
</asp:DropDownList>
<asp:Button runat="server" ID="imgPageNext" CssClass="Pagingbutton" Text=">" CommandArgument="Next" CommandName="Page" OnCommand="imgPageNext_Command"/>
</PagerTemplate>
尝试这个。