无框架 Ajax分页(原创)第1/2页

Ajax
使用如上方法确实可以实现Ajax分页效果,但我总觉得不够简洁,研究了一下午,终于捣鼓出了点东西O_o
首先创建前台页面MyAjaxPager.aspx
 
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MyAjaxPager.aspx.cs" Inherits="AjaxDemo.AjaxPager.MyAjaxPager.MyAjaxPager" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
<style type="text/css">
.a{}{ height:20px; line-height:20px; border-bottom:1px solid #d8dfea; clear:both;}
.b{}{ float:left; width:30px;}
.c{}{ float:left; width:500px;}
</style>
<script type="text/javascript" src="http://www.cnblogs.com/JS/AjaxFunction.js"></script>
<script type="text/javascript">
var xmlHttp;
function getData(pIndex) {
xmlHttp = GetXmlRequest();
xmlHttp.onreadystatechange = ShowRepeaterData;
xmlHttp.open("GET", "AjaxProcess.aspx?index=" + pIndex, true);
xmlHttp.send(null);
}
function ShowRepeaterData() {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
var gridData = xmlHttp.responseText;
var grid = document.getElementById("grid");
grid.innerHTML = gridData;
}
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<div id="page">
<p align="left">
<a rel="nofollow noopener noreferrer" href="javascript:getData(1);">1</a>
<a rel="nofollow noopener noreferrer" href="javascript:getData(2);">2</a>
<a rel="nofollow noopener noreferrer" href="javascript:getData(3);">3</a>
<a rel="nofollow noopener noreferrer" href="javascript:getData(4);">4</a>
<a rel="nofollow noopener noreferrer" href="javascript:getData(5);">5</a>
<a rel="nofollow noopener noreferrer" href="javascript:getData(50);">50</a>
<a rel="nofollow noopener noreferrer" href="javascript:getData(500);">500</a>
<a rel="nofollow noopener noreferrer" href="javascript:getData(5000);">5000</a>
<a rel="nofollow noopener noreferrer" href="javascript:getData(50000);">50000</a>
<a rel="nofollow noopener noreferrer" href="javascript:getData(99999);">99999</a>
</p>
<div id="grid">
<asp:Repeater ID="rptGrid" runat="server">
<HeaderTemplate>
<table>
<tr>
<th style="border:solid 1px red;">编号</th>
<th style="border:solid 1px red;">姓名</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td style="border:solid 1px red;"><%# Eval("Id") %></td>
<td style="border:solid 1px red;"><%# Eval("Name") %></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
</div>
</div>
</div>
</form>
</body>
</html>

画面很简单,就是一排index地址,当点击链接后会以ajax的方式将数据绑定到下边的repeater



主要功能是在处理Ajax请求的AjaxProcess.aspx页面实现的,我们来看看。

12下一页阅读全文

本文无框架 Ajax分页(原创)第1/2页到此结束。没有改变,就没有成长,幸福的人都喜欢沉默。一向喋喋不休说自我如何幸福的人必须内心是虚弱的。当一个人内心足够强大时,说与不说,都已无用。最重要的是,选择最适合自我的方向,一意孤行走下去。找到生命中最确定的信息——那些相似的人或事物终会走到一齐,那些不相似的人或事物,终会背道而驰。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
JS获取鼠标点击时的位置

vue、nginx部署后刷新报404错误的解决方法

electron-builder配置项

VUE聊天页面自动滚动到底部

VUE CTRL+ENTER换行,ENTER发送消息