AspNetPager+UpdatePanel+Repeater小弟我用了但是无法实现无刷新,大家看看,可能是哪里出了有关问题

AspNetPager+UpdatePanel+Repeater我用了但是无法实现无刷新,大家看看,可能是哪里出了问题
 <asp:ScriptManager ID="ScriptManager1" runat="server" />
                <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdataMode="Conditional">
                    <ContentTemplate>
                        <asp:Repeater ID="repeater_Navigation1" runat="server">
<ItemTemplate>
。。。。
 </ItemTemplate>
                        </asp:Repeater>
                        <table width="100%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#cccccc"
                            bgcolor="#FFFFFF" style="border: solid 1px #ccc;">
                            <tr>
                                <td height="30" align="center">
                                    <webdiyer:AspNetPager ID="AspNetPager1" runat="server" PageSize="9" OnPageChanging="AspNetPager1_PageChanging"
                                        CustomInfoHTML="第 <font color='red'><b>%CurrentPageIndex%</b></font> 页 共 %PageCount% 页 总共 %RecordCount% 条"
                                        ShowCustomInfoSection="left" FirstPageText="首页" LastPageText="末页" NextPageText="下页"
                                        PrevPageText="上页">
                                    </webdiyer:AspNetPager>
                                </td>
                            </tr>
                        </table>
                    </ContentTemplate>
                </asp:UpdatePanel>
------解决方案--------------------
没问题,后台代码问题
------解决方案--------------------
没看出问题来
参考这个帖子http://www.cnblogs.com/yangyy753/archive/2012/04/12/2444411.html
------解决方案--------------------
引用:
Quote: 引用:

没问题,后台代码问题

 protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            refresh();
        }
    }
    public void refresh()
    {
        this.AspNetPager1.RecordCount = Int32.Parse(DataMethod.tb_SignupBLL.GetAllCount().ToString());
        int pageIndex = AspNetPager1.CurrentPageIndex - 1;
        int pageSize = AspNetPager1.PageSize;
        repeater_Navigation1.DataSource = DataMethod.tb_SignupBLL.loadall(pageIndex, pageSize);
        repeater_Navigation1.DataBind();
    }
    protected void AspNetPager1_PageChanging(object sender, PageChangingEventArgs e)