sharepointcafe
SharePoint 2013 Server Object Model (SOM) Programming – SharePoint 2013 Tutorial
.
SharePoint Server Object Model Programming allows you to write code and communicates with SharePoint objects if you are inside the SharePoint context. It provides a set of classes which is executed at the server-side. Server Object Model Programming is the…
How to debug Production Apps in Azure ?
.
Hello Everyone, This is my another blog related to Microsoft Azure. Before reading this blog, I would request you to explore my earlier blogs on Cloud Computing and Microsoft Azure. In this blog, I will write about how to debug…
What’s new in C# 6.0 language?
.
C# 6.0 is an another version of C# programming language released in the year 2015. C# 6 provides numerous new features which helps developer to write C# code in more clean and optimized way. Here are top 8 features of C#…
ASP.Net Web API Routing
.
In this blog, we will see about the Routing system in ASP.Net Web API. Routing is one of the important sections in ASP.Net Web API. What is Routing? Routing is the process which decides which action and which controller should…
How to create WCF RESTful Service.
.
In my earlier blog, I have explained about REST and SOAP.In this blog, I will continue WCF tutorial sections. See a list of topic in WCF tutorial here.REST is the short form of Representational State Transfer. REST says each resource…
What is SharePoint Online ? Let’s Explore
.
Hello, everyone, this is my very first interaction with the Online version of SharePoint.SharePoint Online is a cloud-based SharePoint given by Microsoft. With SharePoint Online one can access sites, documents and other data from anywhere, any device. You may also…
What is Azure Cognitive Service? Complete understanding with Face API example.
.
In an earlier blog, you have read about Microsoft Azure. In this blog, you will come to know about Azure Cognitive Service in details. Introduction to Microsoft Azure Cognitive Service Microsoft Cognitive Services (earlier known as Project Oxford) provides us…
How to deploy your Web Application to Microsoft Azure using Visual Studio 2017?
.
Hello everyone, in my earlier blog I have already explained about “Create and Deploy WebApp in Azure App service“. That deployment was done using Visual Studio 2015. Now as you all know that Microsoft has released .Net Core 2.0 and…
How to Create and Deploy WebApp in Microsoft Azure App Service?
.
If you are new to Cloud Computing, please read my earlier blogs on Cloud Computing, What is Azure and Explore Microsoft Azure Service. This is my 4th blog on Cloud Computing series along with Microsoft Azure. Let’s move ahead, in…
Getting started with Microsoft Azure
.
If you are new to Microsoft Azure, then please read my earlier blog on Cloud Computing and Microsoft Azure introduction. In this blog, I will explain how to create resources in Azure Dashboard and will show you screenshots. This will…
What is DevOps? – A Software Delivery Approach
.
In my previous blog, I have explained about Microsoft Azure and Amazon Web Service (AWS). If you want to know about AWS then read my another blog – What is AWS? What is DevOps? DevOps is a buzzword today in Cloud…
What is Azure? – Microsoft Cloud Service
.
Azure is a Cloud Computing Service given by Microsoft. Azure was announced in the year 2008 and released in the year 2010. Earlier it was called Windows Azure now it is Microsoft Azure. What is Azure? According to Microsoft …
What is AWS? A Beginner guide to learn AWS
.
As you know this is the era of Cloud Computing. There are 2 big names in Cloud Computing which have covered the market, one is Microsoft and another one is Amazon. If you are new to Cloud Computing then first…
What is Cloud Computing – A guide for beginners
.
In the last few years, we all have come across the word Cloud Computing. Nowadays Cloud Computing (also called “Cloud”) is one of the emerging technologies in the IT industry. You must be eager to know “What is Cloud Computing…
Facade Design Pattern in C#.Net
.
Design patterns provide efficient and re-usable solutions in software development. If you are new to Design Pattern, please read my earlier blog – Design Pattern in ASP.NetFacade Design Pattern comes under Structural Design Pattern. In short, Facade means the exterior appearance….
Thread Safety Singleton
.
If you are new to design pattern please read my blog on Design Pattern then read about Singleton Design Pattern.So let’s continue about Thread Safety Singleton.There are various ways to implement Singleton Design Pattern. No Thread Safe Thread Safety Thread Safety…
How to create dynamic HTML tags
.
How to create HTML tags dynamically? In some cases, there might be a requirement to create HTML tags dynamically. For eg, I will create below HTML structure with C# code. <ul id=”pagelist” runat=”server” class=”pages”> <li class=”active” rel=”page1″>My Page Title1</li> <li…
Singleton Design Pattern vs Static Class in C#
.
If you are new to design pattern, then read my earlier blog on Design Pattern.We have explored ASP.Net Singleton Design Pattern in earlier blog.This blog will help us to know the differences between Singleton Design Pattern and Static Class in C#. The…
ASP.Net Singleton Design Pattern
.
In the previous blog, we have seen about “What is Design Pattern?” Now this is time to explore the types of Design Pattern.Let’s start this with Singleton Design Pattern.Singleton Design pattern belongs to Creational Design Pattern. Singleton Pattern ensures that…
Web Service to return data in JSON format
.
Web services are those services which are available over web to communicate between systems.By default Web Service returns data in XML format, now if the requirement is to return in JSON format then we need to do modification in web…
