How to create SharePoint List Item programmatically using C#.net

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

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

Create SharePoint List Item (using Server Object Model)

 using(SPSite site = new SPSite("http://SHAREPOINT_SITE_URL"))
{
	using(SPWeb web = site.RootWeb)
	{
		SPList list = web.Lists["LIST_NAME"];
		SPListItem listItem = list.Items.Add();
		listItem["Title"] = "this item is added programmatically via code";
		//Update others in a similar way
		
		listItem.Update();
	}
}

Client Object Model and REST is more the preferred and fastest ways for creating 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!