In this article we will experiment with List manipulations through code. The following are the list operations to perform:
- Add
- Edit
- Delete
Pre-Requisite
Before proceeding we need to create a List named Tasks using the Tasks template.
Now create a new SharePoint Console Application project inside Visual Studio.
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.
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:
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.
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.