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

Repeater with Paging and Sorting Features

Rate me:
Please Sign up or sign in to vote.
4.78/5 (17 votes)
16 Jul 2009CPOL3 min read 104K   4.3K   55  
Repeater with Paging and Sorting features
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

/// <summary>
/// Serialized Class represents the User information.
/// </summary>
[Serializable]
public class UserInfo
{
    public string UserName { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public string Password { get; set; }
    public DateTime LastLoginDate { get; set; }
}

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
Team Leader Softweb Solutions
India India
Profiles : Code Project, ASP.NET Forums
Blog : Knowledgebase World
Current Company : Softwebsolution INC
User Group : Ahmedabad SQLServer UserGroup
Other : Microsoft Certified Technology Specialist (MCTS)

Comments and Discussions