Year: 2010
-
21 features: Silverlight 5 Beta
Today, on 2nd December 2010, at the delivering keynote on “The future of Silverlight “, Scott Gu announced about Silverlight 5. As always Scott was inspiring in his red T shirt Some of the features are as below, 1. Hardware Video decode 2. Trick play: This allows video to be played at different speed and…
-
SharePoint 2010 with Windows 7 Phone
In this article we will retrieve data from SharePoint list and display it Windows 7 phone application. The expected output is as below, Flow Diagram Now we will follow the below steps to perform all above operations. Step 1: Setting up the SharePoint list We have a custom list 1. Name of the list…
-
Multiple base addresses for WCF Service
If we do not want to explicitly set address for each EndPoint in our service then we define BASE ADDRESS for the EndPoint exposed for our service And we use it in service configuration as below, The advantage of having base address is that, if we are changing the service URL, we need to change…
-
Enabling JavaScript IntelliSense on Visual Web Part in SharePoint 2010
Open Visual Studio 2010 and create a Visual Web Part project as selecting from SharePoint 2010 tab Now provide name of the site where you want to deploy the web part Click on Validate button to validate the site. If you are able to connect and get below message then we are we are good…
-
Download PDF on Walkthrough creating REST Service in WCF 4.0
Walkthrough creating REST Service in WCF 4
-
Walkthrough creating REST Service in WCF 4.0
Objective This article will explain step to step explanation of, how to create a REST based service and how to consume that in a managed client. Step 1` Create a new project as WCF Service application type. Step 2 Delete all the default code from IService.cs and Service.svc.cs Now open Web.Config file and delete <system.serviceModel>…
-
Navigation between pages in Windows 7 Phone
To see how could we do navigation between pages in Windows 7 Phone application , I am going to create a new page . I am giving name of the page as NewPage.Xaml Now we will navigate as Let us put a button on MainPage.xaml and on click of that button we will navigate tp…
-
Walkthrough on using LINQ to SharePoint from within a SharePoint 2010 custom visual web part
Objective In this article we will see, 1. How to create custom WebPart. 2. How to use SPGridView on visual WebPart. 3. How to use LINQ to SharePoint 4. How to deploy the WebPart in SharePoint site. Step 1 Open Visual studio 2010 and create new project. From SharePoint 2010 project template select Visual Web…