sharepointcafe
Write Power Shell Script to Lock and Unloock a Site in SharePoint 2010
.
Below Power Shell Script will Unlock a SharePoint site if it is in locked/read-only.#Region variable declarationWrite-Host “UnLock status started…..”Add-PSSnapin Microsoft.Sharepoint.PowershellSet-SPSite -Identity “<site-url>” -LockState “Unlock”Write-Host “Task completed…..”Read-Host -Prompt “The above error occurred. Press Enter to exit.”For -LockState attribute there are mainly…
WCF tutorial – Learn WCF quickly
.
WCF tutorial – Learn WCF quickly WCF stands for Windows Communication Foundation and used for developing distributed system. WCF services can communicate with.Net applications and Non-Microsoft technology as well. ABC of WCF (A) Address – Where to bind, which is…
Client Side Object Model in SharePoint 2010
.
SharePoint 2010 offers a useful way to access SharePoint objects from the client side. A developer can use .Net managed code, ECMAScript to access SharePoint objects like List, Site, Library etc.On this blog, I will write a code to select…
C# code to convert XML into Dataset
.
How to convert XML file into dataset in C# programming?In this blog I will show you how we can get XML data into a dataset. What is XML? XML is a markup language developed by the World Wide Web Consortium…
Oops interview questions and answers
.
In this blog, I have collected Interview questions and answers of OOPS (Object Oriented Programming System). Q. What are OOPS principles? Object-oriented is an approach to programming in C#, Java etc.OOPS Principals – 1. Abstraction2. Encapsulation3. Inheritance4. Polymorphism Q. Is inheritance possible if a private…
All about sp_addlinkedserver syntax
.
sp_addlinkedserver linked 2 servers. Once sp_addlinkedserver query executes, query can be run against these servers. Run below queries one by one to link, to provide login credentials and to access data EXEC sp_addlinkedserver @server=’ServerName’ EXEC sp_addlinkedsrvlogin ‘ServerName‘, ‘false’, NULL, ‘username’, ‘password’…
Client Side Pagination in Gridview
.
As you know pagination is very important for any data control for eg Gridview if you have large amount of data. Server load on pagination is also a big concern.Below is the code for pagination in gridview using client side….
Why we use Cookie?
.
What is Cookies? Cookies here refer as Web Cookies, HTTP Cookies is a small piece of code stored at user’s machine by bowers. Why we use Cookies ? To collect demographic information about who is visiting the Web site. Sites…
Java Script Form Validation- ASP.Net Web Form
.
Java Script is the best way to validate a web form at client side and ensure the most accurate data to store from an HTML or asp.net web forms. In this blog, I will explain about all kind of validation…
How to create a blank SharePoint Page? SharePoint Branding
.
I was working on a project where all my SharePoint inherits from a custom master page with predefined Page Layout. I got a requirement where i need to create few pages with different layouts. There are various ways to do…
What is Service Oriented Architecture?
.
Service Oriented Architecture (SOA) is a style to design software system where 2 or more component communicates with each other over a network through a defined protocol. Advantages of SOA architecture. Loosely Couple – A component in SOA architecture must…
Learn OOPS concept in simple and easy way
.
In this blog, We will see Object Oriented Programming Principal in simple and easy way. What is Object Oriented Programming Concept? Object oriented is an approach to do programming in C#, Java etc. Before object oriented programming structural programming model…
How to Crop and Upload image using JQuery
.
In this blog, I will explain how to crop an image and then upload that image using jQuery. Here you will come to know about preview an image, and then crop that image and finally upload it using jQuery and…
Upload images and show the list of image in gridview to delete-asp.net code
.
Below code will upload image in a particular folder and will show the list of images from that folder. User may delete images from that list.HTML Code:<div> <table style=”width: 90%”> <tr> …
