Monday, June 23, 2008

Adding Multiple Lookup field by code in Sharepoint

Hi all,
here is simple code to add Multiple lookup fields by code in SharePoint
SPFieldLookupValueCollection spConnectionMethod = new SPFieldLookupValueCollection();
foreach (ListItem li in rdbconnection.Items)
{
if (li.Selected)
{
spConnectionMethod.Add(new SPFieldLookupValue(Convert.ToInt32(li.Value.ToString().Split('@')[0].ToString()), li.Text));
}
}
litem["Connection"] = spConnectionMethod

No comments:




Share your SharePoint Experiences with us...
As good as the SharePointKings is, we want to make it even better. One of our most valuable sources of input for our Blog Posts comes from ever enthusiastic Visitors/Readers. We welcome every Visitor/Reader to contribute their experiences with SharePoint. It may be in the form of a code stub, snippet, any tips and trick or any crazy thing you have tried with SharePoint.
Send your Articles to sharepointkings@gmail.com with your Profile Summary. We will Post them. The idea is to act as a bridge between you Readers!!!

If anyone would like to have their advertisement posted on this blog, please send us the requirement details to sharepointkings@gmail.com