asp.net自定义分页控件示例
本文导语: 一、.ascx页面 代码如下: 記錄總數: 總頁數: 當前頁: 轉到第頁 二、.ascx.cs文件 代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Web;using Syste...
一、.ascx页面
記錄總數:
總頁數:
當前頁:
轉到第頁
二、.ascx.cs文件
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace IOCS.WEB.UserControl
{
public partial class Pagination : System.Web.UI.UserControl
{
public event EventHandler PageButtonClick;
public bool FirstPost = false;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
}
// 只輸入數字
txtpage.Attributes.Add("onclick",
@"if(!((event.keyCode>=48&&event.keyCode=96&&event.keyCode