Year: 2010
-
Cascading drop down column in a SharePoint 2007 List
Objective This article will show how to use codeplex project to achieve Cascading drop down columns in SharePoint list. This article will show how to achieve parent child relationship in column of SharePoint list. Step 1Download the project from codeplex. Choose WSP file to download. To download the project Click here Step 2 After downloading…
-
Making Image Gray in SILVERLIGHT 3.0
Objective This article will show; how to make an Image Gray in SILVERLIGHT 3.0. This is a very basic article showing ; how to make an image gray in SILVERLIGHT. Follow the Steps Create a new SILVERLIGHT application. Design the XAML page Create two rows In first row put an Image using Image control. A.jpg…
-
Behavior in SILVERLIGHT 3.0
Objective This article will give a basic introduction of BEHAVIOR feature in SILVERLIGHT3.0. I will also walkthrough to create a custom behavior. What is Behavior in SILVERLIGHT 3? According to definition given in the product introduction of SILVERLIGHT3 A Behavior is in essence a reusable piece of interactivity that can be applied directly to user…
-
Dynamic type with Reflection in debug mode
Objective This article will give simple debug mode explanation on how Reflection and Dynamic type works. Note: Read my previous article on dynamic type here Dynamic Type Let us create a very simple class called Student. public class Student{ public void Print(string Name) { Console.WriteLine(“Student Name is “ + Name); }} Now say, you don’t…
-
Returning Large volume of records from SOAP based WCF service
Objective In this article I will explain; How to return large volume of data (around 50000 records) from SOAP based WCF service to any client. I will show; what service configuration setting and client configuration setting is needed to handle large volume of data returning for WCF service. Follow the below steps, Step 1: Create…
-
CRUD Operations on Windows Azure table and Azure Storage
Objective This article will give a walkthrough on how to perform a CRUD operation on Azure table. Step 1 Creating the Create a new Cloud Service Application. To create, File -> New -> Projects -> Cloud Services. Select ASP.Net Web Role. I am giving CRUDSample to the name of the project and CRUDWebRole to the…