日期:2014-05-17  浏览次数:20421 次

无刷新分页
请问哪位有无刷新分页的例子,麻烦给以给,谢谢了!数据是从数据库中读出来的!什么方法都行!表名:pageList  字段:title、content     469979387@qq.com
------最佳解决方案--------------------
<asp:UpdatePanel runat="server" ID="updatepanel1">
                <ContentTemplate>
                    <table class="editca" width="95%">
                        <tr>
                            <th>
                                新闻标题
                            </th>
                            <th>
                                修改
                            </th>
                            <th>
                                删除
                            </th>
                        </tr>
                        <asp:Repeater ID="rptCaNews" runat="server">
                            <ItemTemplate>
                                <tr>
                                    <td>
                                        <a href="../Content.aspx?id=<%#Eval("id") %>" target="_blank"><%#Eval("title") %></a>