Just saw that you are good for .NET so you will feel right at home in SharePoint. I still stand behind my book choices since you should have the Wrox Box either way. :)
Main Topics
Browse All TopicsHi guys,
I just started working on a Share Point project which I have absolutely no experience with. My question is a two parts one.
1- Whats the best resources books for sharepoint development?
2-I have this small code here that I need to understand.
If you see the code, you can see listItem.Update();
the documentation says this update call updates the database, does this mean the code is adding a new field to the database?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
here is the code list
string KB_Name = "Article ID";
using (SPWeb web = properties.OpenWeb())
{
if (properties.ListItem.FileS
{
SPListItem listItem = web.Lists[properties.ListI
listItem[KB_NAME] = String.Format("{0}-{1}", properties.ListTitle, itemID);
listItem.Update();
}
}
I still havent gotten my id to access the db to confirm this but I can only think this update call is just made to enforce the GUI to show Article ID with the associated generated id
Business Accounts
Answer for Membership
by: GreatGermPosted on 2009-07-17 at 10:24:11ID: 24880745
1. For overall SharePoint info get Inside Microsoft Windows SharePoint Services 3.0. For detailed coding information get the Wrox Box.
2. I'm on my phone and for some reason scrolling of the codebox doesn't like to work so I can't comment on the whole code, but listItem.Update() is just how it sounds. It commits a list item update that is being done above. This code won't add new fields (columns) that I can see.