Programmatically add an item/Contact to a SharePoint 2010 Contact List

Here,in this post I am going to describes how we can programmatically add an contact to the SharePoint 2010.

We go here step by steps.So.let’s begin.

(1) Creating the Contact List.

//Get  the Site under which you want to create Contacts.

SPSite site = new SPSite(http://localhost);
SPWeb web = site.AllWebs[0];

//Give the Type of List you want to create,in Our case it’s noting but Contacts.
SPList list = web.Lists["Contacts"];

Now,Up to this we has the instance of Contact list.

(2)Adding Contact In to Contact list.

To Add/Create the Contacts we need to update following field.

Field Name Type
Title String
FirstName String
FullName String
Email String
Company String
JobTitle String
WorkPhone String
HomePhone String
CellPhone String
WorkFax String
WorkAddress String
WorkCity String
WorkState String
WorkZip String
WorkCountry String
WebPage String
Comments String

//Adding event into list
  SPListItem contact = list.Items.Add();

contact["Title"] = “Rajput”;

contact["FirstName"] = “Chirag”;

contact["FullName"] = “Rajput Chirag”;

contact["Email"] =  “Chirag@test.com”;

contact["Company"] = “My Company”;

contact["JobTitle"] = “Software Eng.;

contact["WorkPhone"] = “0303- 1233344” ;

contact["HomePhone"] = “2121-323232”;

contact["CellPhone"] = “+1213232323”;

contact["WorkFax"] = “122132-3232”

contact["WorkAddress"] = “ddadadada”;

contact["WorkCity"] = “Bangalore”;

contact["WorkState"] = “Karnataka”;

contact["WorkZip"] = “1212-32”;

contact["WorkCountry"] = workcountry" ;

contact["WebPage"] = “http://Mylog.com”;

contact["Comments"] = “MyComments”;

contact.Update();

Your,final code will look like this.

//Get  the Site under which you want to create Contacts.

SPSite site = new SPSite(http://localhost);
SPWeb web = site.AllWebs[0];

//Give the Type of List you want to create,in Our case it’s noting but Contacts.
SPList list = web.Lists["Contacts"];

//Adding Contact into list
  SPListItem contact = list.Items.Add();

contact["Title"] = “Rajput”;

contact["FirstName"] = “Chirag”;

contact["FullName"] = “Rajput Chirag”;

contact["Email"] =  “Chirag@test.com”;

contact["Company"] = “My Company”;

contact["JobTitle"] = “Software Eng.;

contact["WorkPhone"] = “0303- 1233344” ;

contact["HomePhone"] = “2121-323232”;

contact["CellPhone"] = “+1213232323”;

contact["WorkFax"] = “122132-3232”

contact["WorkAddress"] = “ddadadada”;

contact["WorkCity"] = “Bangalore”;

contact["WorkState"] = “Karnataka”;

contact["WorkZip"] = “1212-32”;

contact["WorkCountry"] = workcountry" ;

contact["WebPage"] = “http://Mylog.com”;

contact["Comments"] = “MyComments”;

contact.Update();

Thanks.

Advertisement

8 Responses to Programmatically add an item/Contact to a SharePoint 2010 Contact List

  1. [url=http://nextdayshippingpharmacy.com/products/clomid.htm][img]http://legalusdrugstore.com/16.jpg[/img][/url]
    laser grading pharmacy tech exam http://nextdayshippingpharmacy.com/products/depakote.htm pharmacy schools in arizona [url=http://nextdayshippingpharmacy.com/products/crestor.htm]crestor[/url]
    pharmacy council of jamaica http://nextdayshippingpharmacy.com/products/sustiva.htm mayfair pharmacy london [url=http://nextdayshippingpharmacy.com/products/augmentin.htm]rockhill ltc pharmacy[/url]
    home mom stay pharmacy store http://nextdayshippingpharmacy.com/products/cymbalta.htm davis pharmacy [url=http://nextdayshippingpharmacy.com/products/cialis-soft-tabs.htm]cialis soft tabs[/url]
    kleins pharmacy http://nextdayshippingpharmacy.com/products/aciclovir.htm pharmacys in aberdeen with minor ailments scheme [url=http://nextdayshippingpharmacy.com/products/horny-goat-weed.htm]georgia pharmacy board[/url]
    http://nextdayshippingpharmacy.com/products/pamelor.htm hi school pharmacy in sandy oregon

  2. [url=http://legalusdrugstore.com/index.php?lng=it&cv=eu][img]http://legalusdrugstore.com/19.jpg[/img][/url]
    nj application for inactive pharmacy license http://legalusdrugstore.com/products/kamagra-oral-jelly.htm pharmacy related jobs in kpo mumbai [url=http://legalusdrugstore.com/products/premarin.htm]premarin[/url]
    blythewood pharmacy http://legalusdrugstore.com/products/tretinoin-cream-0-025-.htm prosperity specialty pharmacy farifax va [url=http://legalusdrugstore.com/products/depakote.htm]rite aid salem nh pharmacy brooks[/url]
    the angry pharmacy tech http://legalusdrugstore.com/products/desyrel.htm ma state board of pharmacy [url=http://legalusdrugstore.com/products/trazodone.htm]trazodone[/url]
    kroger pharmacy outer drive and michigan ave dearborn http://legalusdrugstore.com/products/kamasutra-dotted-condoms.htm how long to get pharmacy degree [url=http://legalusdrugstore.com/products/lopressor.htm]pharmacy courses in london[/url]
    http://legalusdrugstore.com/products/kamasutra-longlast-condoms.htm pharmacy prescription

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s