Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. using (SPSite site = new SPSite("http://aissp2013/sites/Team"))
  2. {
  3. SPWeb web = site.RootWeb;
  4. SPList list = web.Lists["Employees"];
  5. SPListItem item = list.GetItemById(1);
  6. item.Properties.Add("Employee Name", "Nadeem Yousuf");
  7. item.Update();
  8. list.Update();
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement