Posts

Showing posts from December, 2010
My new blog present here.

Featured Post

Insights into Sitecore Search: A Definitive Introduction

A key component of digital experience management is effective information retrieval. A simplified approach is required for websites, applications, and platforms containing a lot of material so that consumers can easily get the data they require. This need is met by Sitecore, a well-known name in the field of digital experience platforms (DXPs), which provides powerful and comprehensive search functionality. We will travel into the realm of Sitecore Search in this article, learning about its capabilities, architecture , and the enormous value it offers both developers and end users. Introduction to Sitecore Search    A headless content discovery platform powered by AI , Sitecore Search enables you to build predictive and custom search experiences across various content sources. To extract and index you

Create SharePoint List/Document Library using programming

Create SharePoint List/Document Library using C# (How-To: Create a SharePoint list programmatically/Create a list/Add a Custom List to SharePoint/Programmatically create a custom SharePoint list): Overview: In one of my project, i am having requirements of list SharePoint List logging. For this, i required a SharePoint. I can create a SharePoint List by following way: Create a SharePoint List by directly accessing the SharePoint Site Create a SharePoint List with the help of SharePoint Object Model ( Microsoft.SharePoint namespace ) I adopted the second case in my windows application project. Below are steps in detail. Step 1: Create a xml file with name ListDetails.xml and copy following text in to that xml file: Step 2: Create a .cs file and add following code: private SPFieldType GetFieldType(string fieldType) { SPFieldType fieldTypeForColumn = SPFieldType.Text; // Get the field type. switch (fieldType) { case "Text": fieldTypeForColumn = SPFieldType.Text; b