当前位置: 代码迷 >> ASP.NET >> 无刷新分页解决思路
  详细解决方案

无刷新分页解决思路

热度:4221   发布时间:2013-02-25 00:00:00.0
无刷新分页
请问哪位有无刷新分页的例子,麻烦给以给,谢谢了!数据是从数据库中读出来的!什么方法都行!表名: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>
                                    </td>
  相关解决方案