ホームページ  >  記事  >  php教程  >  AspNetAjaxPager、Asp.Net ユニバーサル非リフレッシュ Ajax ページング コントロール、マルチ スタイルおよびマルチ データ バインディングをサポート

AspNetAjaxPager、Asp.Net ユニバーサル非リフレッシュ Ajax ページング コントロール、マルチ スタイルおよびマルチ データ バインディングをサポート

WBOY
WBOYオリジナル
2016-06-13 12:24:16848ブラウズ

本控件可以对GridView,Repeater,DataGrid,DataList...几乎所有的.net数据绑定控件进行分页,全部无刷新,数据绑定部分可以使用存储过程也可以直接使用sql语句,这对本控件没有任何干扰!本控件具有较好的用户界面,能够根据需要变换各种样式,配合css控制效果则更好!
1.分页样式效果图:

2.如何使用:
于bin目录下添加:AspNetAjaxPager.dll引用
aspx文件内容:

复制代码 代码如下:


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Demo._Default" %>
<%@ Register Namespace="AspNetAjaxPager" TagPrefix="ajax" Assembly="AspNetAjaxPager"%>




AspNetAjaxPager使用Demo

























编号 姓名 年龄

<%# Eval("id")%>

<%# Eval("name") %>

<%# Eval("age")%>





BackColor="Transparent" BorderColor="Red" BorderWidth="0px" DescriptionText="当前使用中:" GotoButtonValue="转到"
CssClass="navi" IsGotoSelectVisible="False" IsGotoTextBoxVisible="False" LeftPageSize="0" RightPageSize="0" CurrentNumberBgColor="White" />





BackColor="Transparent" BorderColor="Red" BorderWidth="0px" DescriptionText="" GotoButtonValue="转到" CssClass="navi"
RecordCount="1500" IsGotoSelectVisible="False" IsGotoTextBoxVisible="False"/>




BackColor="Transparent" BorderColor="Red" BorderWidth="0px" DescriptionText="" GotoButtonValue="转到" CssClass="navi"
RecordCount="1500" IsGotoSelectVisible="False"/>




BackColor="Transparent" BorderColor="Red" BorderWidth="0px" CssClass="navi" DescriptionText=""
GotoButtonValue="转到"
PagedControlID="Repeater1" RecordCount="1500" />




BackColor="DarkGray" BorderColor="Red" BorderWidth="1px" CssClass="navi" DescriptionText=""
GotoButtonValue="转到" IsGotoSelectVisible="False"
PagedControlID="Repeater1" RecordCount="1500" CellSpacing="1px" />






BackColor="Transparent" BorderColor="Red" BorderWidth="0px" CssClass="navi" DescriptionText=""
GotoButtonValue="转到" IsGotoTextBoxVisible="False"
PagedControlID="Repeater1" RecordCount="1500" LinkIsText="False" NextLink="img/next.gif" FirstLink="img/first.gif" LastLink="img/last.gif" PreviousLink="img/previous.gif" />




BackColor="Transparent" BorderColor="Red" BorderWidth="0px" CssClass="navi" DescriptionText=""
GotoButtonValue="转到" IsGotoSelectVisible="False" IsGotoTextBoxVisible="False"
PagedControlID="Repeater1" RecordCount="1500" CurrentNumberBgColor="Yellow" CurrentPageColor="Lime" LinkNumberWidth="20px" />








$(document) function(){
$(".ストライプ tr").mouseover(function(){
$(this).addClass("over");}).mouseout(function(){
$ (this).removeClass("over");})
$(".strip tr:even").addClass("alt");
>

.cs ファイルの内容:


コードをコピー

コードは次のとおりです://= === ============================================== === ================ // 会社名: Wildren Network Studio (http://www.wildren.com)

// マシン名: WWW -BBE63F97A80

// 登録組織名: Lenovo (Beijing) Limited
// CLR バージョン: 2.0.50727.1433
// ファイル名: Default.aspx.cs
// 作成者: Shao Long
// 作成時刻: 2009-4-4 16:29:49
// プログラムのバージョン: バージョン 1.0
// 関数の説明: デモを使用した AspNetAjaxPager
// 変更記録:
/ / ================================================ = ===================
System を使用;
System.Data を使用;
System.Configuration を使用; ;
System.Web.Security を使用;
System.Web.UI.WebControls を使用;
using System.Web.UI.HtmlControls;
using System.Data.OleDb;
using AspNetAjaxPager.Delegate;
名前空間デモ
{
パブリック部分クラス _Default :ページ
{
private OleDbConnection conn;
private OleDbCommand cmd;
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.BindData(this.Pager1.CurrentPageIndex, this.Pager1.PageSize);
}
else
{
///バインディング イベントは、ページング ナビゲーションがクリックされました。データを表示します
this.Pager1.OnPageIndexChanged = new PageIndexChangedDelegate(BindData)
}
}
///
/// リピーター データをバインドします。 🎜>// /
///
///
public void BindData(int PageIndex, int PageSize)
{
int intStartIndex = (PageIndex - 1) * PageSize 1;
int intEndIndex = PageIndex *
conn; OleDbConnection();
conn.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;データ ソース = Server.MapPath("~/app_data/db.mdb"); ();
conn.Open();
///この部分はストアド プロシージャ ページングで置き換えることができますが、コントロールには影響しません
cmd.CommandText = "select count(*) from学生";
int totalCount = (int)cmd.ExecuteScalar();
cmd.CommandText = string.Format("id >= {0} および id DataSet ds = new DataSet();
OleDbDataAdapter da = new OleDbDataAdapter(cmd.CommandText, conn);
da.Fill(ds);
this.Pager1 .RecordCount = totalCount;
this.Repeater1.DataBind();
}
}


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。