How to update SharePoint List Item programmatically using C#.Net

Below is a code snippet to programmatically update a SharePoint List Item using the Server Object Model.

Note - Please replace the placeholders with actual values before using the code.

The Following code finds an item with ID 1 (this can be hard-coded or passed as a variable) and updates the Title.

using(SPSite site = new SPSite("http://SHAREPOINT_SITE_URL"))
{
	using(SPWeb web = site.RootWeb)
	{
		SPList list = web.Lists["LIST_NAME"];
		SPListItem item = list.GetItemById(1);
		item["Title"] = "this is the updated title";
		item.Update();
	}
}


Client Object Model and REST is a more preferred and faster way for updating SharePoint content.


This is not an AI-generated article but is demonstrated by a human.

Please support independent contributors like Code2care by donating a coffee.

Buy me a coffee!

Buy Code2care a Coffee!

Comments & Discussion

Facing issues? Have questions? Post them here! We're happy to help!