Categories: Asp.Net

Creating Custom HTTP Module in Asp.Net

This discuss about HTTP Module in .Net, what is the purpose of HTTP Module in ASP.Net, how to create custom HTTP Module in Asp.Net and how to register custom HTTP Module in web.config.

Categories: C#.Net

Structural Patterns, Proxy Design Pattern in C#, Example Of Proxy Pattern in C#

This is discuss about one of the Structural Design Patterns in .Net. This explains about Proxy Design Pattern in .Net or C#, example Of Proxy Pattern in C#, advantages of proxy patterns and when to use proxy design pattern in C#.

Categories: C#.Net

C# 2008 New Features

This discuss about new features of C# 2008 or .Net 3.5. It explains various new features like Automatic properties, Object Initializers, Type Inference, Anonymous Types, Lambda Expressions and Extension Methods. It explains about each in detail.

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