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

In-place Editing with ASP.NET Repeater

Rate me:
Please Sign up or sign in to vote.
4.97/5 (24 votes)
29 Aug 2011CPOL6 min read 129.8K   4.5K   33  
A demonstration of how the ASP.NET Repeater control can be used for in-place editing and adding items
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Ediable_Repeater
{
    public class Contact
    {
        public int ID { get; set; }
        public string FirstName { get; set; }
        public string LastName { 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)



Comments and Discussions