SharePoint 2010 - List - Add, Edit, Delete Using Code


In this article we will experiment with List manipulations through code. The following are the list operations to perform:

  1. Add
  2. Edit
  3. Delete

Pre-Requisite

Before proceeding we need to create a List named Tasks using the Tasks template.

Share1.gif

Now create a new SharePoint Console Application project inside Visual Studio.

Share2.gif

Make sure you changed the Application Target Framework to the .Net 3.5 version.

Adding an Item

For adding a new Task Item execute the following code:

using (SPSite site = new SPSite("http://appes-pc"))
{
    using (SPWeb web = site.OpenWeb())                 
    {
        SPList list = web.Lists["Tasks"];
        SPListItem item = list.Items.Add();
        item["Title"] = "New Task";
        item["Description"] = "Description of Task";

        item.Update();
    }
}


Now you can check the Tasks list inside SharePoint and you will see the new item there.

Share3.gif

Editing an Item

For editing an existing Task use the following code. Here we are changing the first item Title and Description.

using (SPSite site = new SPSite("http://appes-pc"))
{
    using (SPWeb web = site.OpenWeb())
    {
        SPList list = web.Lists["Tasks"];
        SPListItem item = list.Items[0];
        item["Title"] = "Edited Task";
        item["Description"] = "Description of Task (edited)";

        item.Update();
    }
}


Going back to SharePoint you can see the Edited Task:

Share4.gif

Deleting an Item

For deleting an item use the following code.

using (SPSite site = new SPSite("http://appes-pc"))
{
    using (SPWeb web = site.OpenWeb())
    {
        SPList list = web.Lists["Tasks"];
        SPListItem item = list.Items[0];

        item.Delete();
    }
}


Now you can go back to SharePoint and see that the item was deleted.

Share5.gif

References

http://suguk.org/blogs/tomp/archive/2006/09/28/Adding_SPListItems.aspx

Summary

In this article we have experimented with the List manipulations Add, Edit and Delete through code. In real life we need to automate List manipulations and programming will help with that.