Tag: Microsoft SharePoint
-
Preparing for SharePoint Online migration
SharePoint product has had a very drastic transition over the past few years. Many features are deprecated and many solution practices which we used to follow are no more supported. So this blog will give you details of the things to watch out for or to be remediated before you move into cloud. No farm solutions …
-
SharePoint 2016 Migration
New SharePoint version is always exciting with new features and better interfaces , but also equally stressful considering we have to move all our data from current version to the new version. Below are some basic information about migration to SharePoint 2016. No direct migration path from 2007, 2010 to 2016: If you are…
-
SharePoint 2013 – Update/Clear Taxonomy Field Value using C# CSOM
This post will detail you with sample code snippet to update and clear value of a taxonomy field of a list item. Update value to Taxonomy Field: public void UpdateTaxonomyField(ClientContext ctx, List list,ListItem listItem,string fieldName,string fieldValue) { Field field = list.Fields.GetByInternalNameOrTitle(fieldName); TaxonomyField txField = clientContext.CastTo<TaxonomyField>(field); TaxonomyFieldValue termValue = new TaxonomyFieldValue(); string[] term = fieldValue.Split(‘|’); termValue.Label = term[0]; termValue.TermGuid…
