Add a New Item in SharePoint List using C#

  1. // Open your SPSite  
  2. using(SPSite oSite = new SPSite("http://ils-jacobr:35526")) {  
  3.     //Get a Root Web  
  4.     using(SPWeb oWeb = oSite.RootWeb) {  
  5.         //Get a Particular List  
  6.         SPList oList = oWeb.Lists["EmployeeDetails"];  
  7.         //Add a New item  
  8.         SPListItem oSPListItem = oList.Items.Add();  
  9.         oSPListItem["Employee ID"] = txtEmployeeId.Text;  
  10.         oSPListItem["City"] = txtCity.Text;  
  11.         oSPListItem["State"] = txtState.Text;  
  12.         oSPListItem["First Name"] = txtFirstName.Text;  
  13.         oSPListItem["Last Name"] = txtLastName.Text;  
  14.         oSPListItem.Update();  
  15.     }  
  16. }