Categories: Asp.Net

Create HTTP Handler in Asp.Net

This discuss about how to create custom HTTP Handler in Asp.Net, how to handles new page extension, how to register new extension in IIS.

Categories: WCF

WCF Contracts, Service Contracts, Data Contracts, Fault Contracts and Message Contracts in WCF

It discuss about what is meant by contract in WCF, what is it responsibility. It explains about what are the various contracts in WCF, about Service Contracts, Data Contracts, Fault Contracts, Message Contracts, responsibility of Service Contract and Operation Contract.

Categories: C#.Net

Abstract Factory Design Pattern in C#.Net

Abstract factory provides the interface to access family of related objects without specifying their concrete classes. That means if you want to access one instance of multiple related classes, abstract factory provides that instance. Abstract factory design pattern in C#.Net provides the solution for such type issues.

Categories: C#.Net

Creational Pattern, Singleton Design Pattern, Example of Singleton Pattern in C#

Singleton design pattern is a creational pattern. You can use singleton pattern in C# whenever you need to maintain instance of a class globally. This article discuss about singleton design patterns in C#, example of singleton design pattern in C#. Singleton pattern in .Net is very useful whenever you need to control the creation of object for particular class.

Categories: WCF

WCF, windows communication foundation Introduction, ABC of WCF, sample wcf application

In this article we discuss about what is the WCF service, why we need WCF service. It covers the sample WCF application and client for WCF service. We also discuss about what is ABC of WCF, Address, Binding, Contract in WCF.

Categories: Asp.Net

Handle Button Click Event of User Control in Asp.Net Page

Here I explained about how to create user control in Asp.Net, how to handle button click event of user control. The article discuss about handling button click event of user control by using EventHandlers in .Net

Categories: XML

Declaring elements in a Document Type Defintion

To represent data in a consistent format, it needs to be given a meaningful structure. Here I discuss about Document Type Definition (DTD) which described the XML document.

Categories: C#.Net

Static Keyword, Static members, Static Constructor, Static Class in C#

C# class can contain any number of static members. In this example I explain about static keyword, different static members, static constructor, static class and how to create static class and when to use static members, static constructor and static classes.

Categories: C#.Net

Access Specifiers Or Access Modifiers in C#

Access Specifier or Access modifier determines scope of variable or method you created in your application. Here I discussed about various access specifiers or access modifiers in C#. Access specifiers or modifiers available in C# are public, private, protected, internal and protected internal. Here I explained each with example.