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 place holders 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 other in similar way
		
		listItem.Update();
	}
}

Client Object Model and REST is more preferred and fast way for creating SharePoint content.



Have Questions? Post them here!


















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap