Click here to Skip to main content
15,891,204 members
Articles / Web Development / ASP.NET

Generic Paging for Recordset with Next Back Navigation

Rate me:
Please Sign up or sign in to vote.
3.55/5 (5 votes)
20 Jun 2005CPOL1 min read 32.6K   582   29  
This article is basically about a Paging control required for project purposes. One can use this just by changing three parameters.
using System;

namespace Paging
{
	/// <summary>
	/// Summary description for Constant.
	/// </summary>
	public class Constant
	{
		public Constant()
		{
			//
			// TODO: Add constructor logic here
			//
		}
		public const int iShowNoPage = 5;//Show No Of pages....
		public static int jIter =iShowNoPage;
		public const int jVirtualInc = iShowNoPage;
		public const int iInitialRecDisplay = 10;// How many record you want to display per page..
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Australia Australia
Whatsup-->Exploring--> MVC/HTML5/Javascript & Virtualization.......!
www.santoshpoojari.blogspot.com

Comments and Discussions