存储过程:

GetProductsCount1:

GetProductsByPage:


CREATE PROCEDURE GetProductsByPage
@PageNumber int,
@PageSize int
AS
declare @sql nvarchar()
set @sql ='select top '+ Convert(varchar, @PageSize) +' * from test where id not in (select top '+ Convert(varchar, (@PageNumber -) * @PageSize) +' id from test)'
exec sp_executesql @sql
GO

前台代码:

代码

view plaincopy to clipboardprint?
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2"%>
<%@ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefix="webdiyer"%>

<%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"

Namespace="System.Web.UI" TagPrefix="asp"%>

<!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>

<mce:style type="text/css"><!--

.lbtnstyle{
font-size: 12px; color: black; text-
decoration: none;color:red;
}
.anpager .cpb {background:#1F3A87 none repeat scroll ;border:1px solid #CCCCCC;color:#FFFFFF;font-weight:bold;margin:5px 4px ;padding:4px 5px ;font-
size:12px}
.anpager a {background:#FFFFFF none repeat scroll ;border:1px solid #CCCCCC;color:#1F3A87;margin:5px 4px ;padding:4px 5px ;text-decoration:none;font-
size:12px}
.anpager a:hover{background:#1F3A87 none repeat scroll
;border:1px solid #1F3A87;color:#FFFFFF;}

--></mce:style><style type="text/css" mce_bogus=""> .lbtnstyle{
font-size: 12px; color: black; text-
decoration: none;color:red;
}
.anpager .cpb {background:#1F3A87 none repeat scroll ;border:1px solid #CCCCCC;color:#FFFFFF;font-weight:bold;margin:5px 4px ;padding:4px 5px ;font-
size:12px}
.anpager a {background:#FFFFFF none repeat scroll ;border:1px solid #CCCCCC;color:#1F3A87;margin:5px 4px ;padding:4px 5px ;text-decoration:none;font-
size:12px}
.anpager a:hover{background:#1F3A87 none repeat scroll
;border:1px solid #1F3A87;color:#FFFFFF;}
</style>

</head>

<body>

<form id="form1" runat="server">

<div>

<asp:ScriptManager ID="ScriptManager1" runat="server">

</asp:ScriptManager>

<asp:UpdatePanel ID="UpdatePanel1" runat="server">

<ContentTemplate>

<table>

<tr>

<td width="">

<asp:TextBox ID="txtname" runat="server"></asp:TextBox>

</td>

<td width="">

<asp:Button ID="btninsert" runat="server" Text="添加行"/>

</td>

</tr>

<tr>

<td colspan="">

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" Width="450px" CellPadding="" ForeColor="#333333" GridLines="None" style="font-size:12px" mce_style="font-size:12px" OnRowDataBound="GridView1_RowDataBound1">

<Columns>

<asp:TemplateField>

<HeaderTemplate>

ID
</HeaderTemplate>

<EditItemTemplate><asp:TextBox ID="txtid" runat="server" Text='<%#Eval("id") %>' Enabled="false"></asp:TextBox></EditItemTemplate>

<ItemTemplate><asp:Label ID="labid" runat="server" Text='<%# Eval("id") %>'></asp:Label></ItemTemplate>

<ControlStyle Width="170px"/>

</asp:TemplateField>

<asp:TemplateField>

<HeaderTemplate>

名称
</HeaderTemplate>

<EditItemTemplate><asp:TextBox ID="txtname" runat="server" Text='<%#Eval("name") %>'></asp:TextBox></EditItemTemplate>

<ItemTemplate><asp:Label ID="labname" runat="server" Text='<%# Eval("name") %>'></asp:Label></ItemTemplate>

<ControlStyle Width="170px"/>

</asp:TemplateField>

<asp:TemplateField>

<EditItemTemplate>

<asp:LinkButton ID="lbtnupdt" runat="server" CommandName="Update" Text="更新"class="lbtnstyle" OnClientClick="return confirm('确定更新?');"></asp:LinkButton>

<asp:LinkButton ID="lbtncan" runat="server" CommandName="Cancel" Text="取消"class="lbtnstyle"></asp:LinkButton>

</EditItemTemplate>

<ItemTemplate>

<asp:LinkButton ID="lbtnedit" CommandName="Edit" runat="server" Text="编辑"class="lbtnstyle"></asp:LinkButton>

<asp:LinkButton ID="lbtndel" CommandName="Delete" runat="server" Text="删除"class="lbtnstyle" OnClientClick="return confirm('确定删除?');"></asp:LinkButton>

</ItemTemplate>

</asp:TemplateField>

</Columns>

<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White"/>

<RowStyle BackColor="#EFF3FB"/>

<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center"/>

<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333"/>

<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White"/>

<EditRowStyle BackColor="#2461BF"/>

<AlternatingRowStyle BackColor="White"/>

</asp:GridView>

</td>

</tr>

<tr>

<td colspan="" align="right">

<webdiyer:AspNetPager ID="AspNetPager1" runat="server" CssClass="anpager" CurrentPageButtonClass="cpb" FirstPageText="首页" LastPageText="尾页" NextPageText="下一页" PrevPageText="上一页">

</webdiyer:AspNetPager>

</td>

</tr>

</table>

</ContentTemplate>

</asp:UpdatePanel>

</div>

</form>

</body>

</html>

后台代码:

代码

private SqlConnection con;
int currentPageNumber;//当前页号

int pageSize =;//每页显示记录条数
protectedvoid Page_Load(object sender, EventArgs e)
{
if (!
IsPostBack)
{
currentPageNumber =
;
ViewState["currentPageNumber"] =
currentPageNumber;
getbind();
}
//注册事件

GridView1.RowDeleting +=new GridViewDeleteEventHandler(GridView1_RowDeleting);
GridView1.RowEditing +=new
GridViewEditEventHandler(GridView1_RowEditing);
GridView1.RowUpdating +=new
GridViewUpdateEventHandler(GridView1_RowUpdating);
GridView1.RowCancelingEdit +=new
GridViewCancelEditEventHandler(GridView1_RowCancelingEdit);
btninsert.Click +=new
EventHandler(btninsert_Click);
AspNetPager1.PageChanged +=new
EventHandler(AspNetPager1_PageChanged);

}
//分页事件

void AspNetPager1_PageChanged(object sender, EventArgs e)
{
currentPageNumber=
AspNetPager1.CurrentPageIndex;
ViewState["currentPageNumber"] =
currentPageNumber;
getbind();
}
//添加一行数据事件

void btninsert_Click(object sender, EventArgs e)
{
string sql ="insert into test (name)values('"+ txtname.Text +"')"
;
con =new SqlConnection("Server=.;DataBase=JobWanted Apartment;Uid=sa;pwd="
);
SqlCommand cmd =new
SqlCommand(sql, con);
con.Open();
cmd.ExecuteNonQuery();
getbind();
}
//取消GridView编辑

void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
{

GridView1.EditIndex =-;
getbind();
}
//GridView修改事件

void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
string sql ="update test set name='"+ (((TextBox)GridView1.Rows[e.RowIndex].FindControl("txtname")).Text) +"' where id='"+Convert.ToInt32(((TextBox)GridView1.Rows[e.RowIndex].FindControl("txtid")).Text)+"' "
;
con =new SqlConnection("Server=.;DataBase=JobWanted Apartment;Uid=sa;pwd="
);
SqlCommand cmd =new
SqlCommand(sql, con);
con.Open();
cmd.ExecuteNonQuery();
GridView1.EditIndex =-
;
getbind();
}
//GridView编辑事件

void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{
GridView1.EditIndex =
e.NewEditIndex;
getbind();
}
//GridView删除行事件

void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
string sql ="delete from test where id='"+ Convert.ToInt32(((Label)GridView1.Rows[e.RowIndex].FindControl("labid")).Text) +"'"
;
con =new SqlConnection("Server=.;DataBase=JobWanted Apartment;Uid=sa;pwd="
);
SqlCommand cmd =new
SqlCommand(sql, con);
con.Open();
cmd.ExecuteNonQuery();
getbind();
}
//GridView数据绑定

privatevoid getbind()
{
currentPageNumber =Convert.ToInt32( ViewState["currentPageNumber"
]);
con =new SqlConnection("Server=.;DataBase=JobWanted Apartment;Uid=sa;pwd="
);
SqlCommand cmd =new SqlCommand("GetProductsCount1"
, con);
cmd.CommandType =
CommandType.StoredProcedure;
SqlCommand cmd1 =new SqlCommand("GetProductsByPage"
, con);
cmd1.CommandType=
CommandType.StoredProcedure;
cmd1.Parameters.Add("@PageNumber", SqlDbType.Int, ).Value =
currentPageNumber;
cmd1.Parameters.Add("@PageSize", SqlDbType.Int, ).Value =
pageSize;
con.Open();
DataTable dt =new
DataTable();
SqlDataAdapter adapter =new
SqlDataAdapter(cmd1);
adapter.Fill(dt);
//AspNetPager1.PageSize = 10;//设置每页显示的行数

AspNetPager1.RecordCount = (int)cmd.ExecuteScalar();//得出总的记录条数
AspNetPager1.CurrentPageIndex = currentPageNumber;
GridView1.DataSource =
dt;
GridView1.DataBind();
}
//GridView高亮行显示

protectedvoid GridView1_RowDataBound1(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType ==
DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor,this.style.backgroundColor='#C7DEF3'"
);
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c"
);
}
}

转载:http://blog.csdn.net/weng2961389/archive/2010/03/04/5346063.aspx

CREATE PROCEDURE GetProductsCount1 AS
select count(*) from test
GO

Gridview各种功能+AspNetPager+Ajax实现无刷新存储过程分页 (留着用)的更多相关文章

  1. jQuery+php+ajax实现无刷新上传文件功能

    jQuery+php+ajax实现无刷新上传文件功能,还带有上传进度条动画效果,支持图片.视频等大文件上传. js代码 <script type='text/javascript' src='j ...

  2. 使用ajax实现无刷新改变页面内容

    如何使用ajax实现无刷新改变页面内容(也就是ajax异步请求刷新页面),下面通过一个小demo说明一下,前端页面代码如下所示 1 <%@ Page Language="C#" ...

  3. jsp+ajax实现无刷新

    jsp+ajax实现无刷新,鼠标离开文本框即验证用户名 jsp+ajax实现无刷新,鼠标离开文本框即验证用户名(本功能多用于注册) input.jsp(表单提交页面): %@ page content ...

  4. window.history.pushState与ajax实现无刷新更新页面url

    ajax能无刷新更新数据,但是不能更新url HTML5的新API: window.history.pushState, window.history.replaceState 用户操作history ...

  5. Ajax 实现无刷新分页

    Ajax 实现无刷新分页

  6. Ajax 实现无刷新页面

    注意:如本文所用,在前面的文章库的数目可以在源代码中找到,我将指示在文本,其中链路,为了缩短制品的长度,阅读由此带来的不便.乞求被原谅. 评论文章 Ajax 实现无刷新页面.其原理.代码库.代码. 这 ...

  7. PHP+Ajax+plupload无刷新上传头像代码

    很简单的一款PHP+Ajax+plupload无刷新上传头像代码,兼容性很好,可以直接拿来用.你可以自定义各种类型的文件.本实例中只能上传"jpg", "png" ...

  8. angular -- 无刷新做分页

    无刷新做分页参考地址: http://www.jq22.com/demo/angular201707111100/ 示例代码: <!DOCTYPE html> <html lang= ...

  9. jQuery AJAX 网页无刷新上传示例

    新年礼,提供简单.易套用的 jQuery AJAX 上传示例及代码下载.后台对文件的上传及检查,以 C#/.NET Handler 处理 (可视需要改写成 Java 或 PHP). 有时做一个网站项目 ...

随机推荐

  1. C#学习笔记(4)——sqlserver常用语句

    说明(2017-5-26 17:29:05): 需要天天练习: 新建表:create table [表名]([自动编号字段] int IDENTITY (1,1) PRIMARY KEY ,[字段1] ...

  2. Eigen教程(2)

    整理下Eigen库的教程,参考:http://eigen.tuxfamily.org/dox/index.html Matrix类 在Eigen,所有的矩阵和向量都是Matrix模板类的对象,Vect ...

  3. 未能加载文件或程序集”xxxx”或它的某一个依赖项,试图加载格式不正确的程序。

    通常是因为应用程序编译的目标平台与引用的DLL类库目标平台不一致造成的,如应用程序目标编译为64位,而引用了32位的DLL. 在Visual Studio修改应用程序目标编译平台即可. 更多关于目标编 ...

  4. CSS 自适应

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  5. Android训练课程(Android Training) - 高效的显示图片

    高效的显示图片(Displaying BitmapsEfficiently) 了解如何使用通用的技术来处理和读取位图对象,让您的用户界面(UI)组件是可响应的,并避免超过你的应用程序内存限制的方式.如 ...

  6. Android指南 - 样式和主题

    本文翻译自:https://developer.android.com/guide/topics/ui/themes.html Style和theme词汇是专用术语,下文直接使用而不翻译. 样式和主题 ...

  7. 【C】——strtok()和strtok_r()

    下面的说明摘自于最新的Linux内核2.6.29,说明了strtok()这个函数已经不再使用,由速度更快的strsep()代替 /** linux/lib/string.c** Copyright ( ...

  8. linq操作符:聚合操作符

    一.Aggregate操作符 Aggregate操作符对集合值执行自定义聚合运算.来看看Aggregate的定义: public static TSource Aggregate<TSource ...

  9. 解决IDEA 中git 无法自动push 提交问题 Push failed: Failed with error: Could not read from remote repository.

    Push failed: Failed with error: Could not read from remote repository.

  10. ajax传递参数给springmvc总结[转]

    通过ajax传递参数给springmvc,经常会因为 参数类型太复杂,或者根本不知道springmvc都支持哪些类型转换,导致后台接收出现各种问题.如果书写格式没有问题仍然接受参数报错,大部分是因为s ...