Categories: WCF

WCF Contracts, Data Contract in WCF

This explains about implicit data contracts and explicit data contracts in WCF. It also explains how to create explicit data contract and how to call it from client.

Categories: WCF

WCF Hosting, Self Hosting, Host WCF service by using Windows service

This article discuss about different ways to host the WCF service. It explains about Self Hosting of WCF Service in detail. It discuss about WCF service self hosting technique using windows service.

Categories: Asp.Net

Custom Validation Control in Asp.Net

This explains about how to create our own custom validation control in Asp.Net with our own functionality.

Categories: Asp.Net

Forms Authentication across Applications on different web servers in Asp.Net

This discuss about how to share forms authentication for different applications which are running on different web servers. This explains forms authentication for multiple applications which are running on different web servers by using machineKey.

Categories: Asp.Net

Forms Authentication across multiple Applications on same web server in Asp.Net

This discuss about how to handle same forms authentication for multiple applications on same web server. This explains forms authentication for multiple applications by using machineKey

Categories: C#.Net

Call base class constructor and its methods from child class by using "base" keyword in C#:

This explains about C# keyword base. It discuss about what are the advantages of base keyword, when can we use base keyword and how to call base class constructor and its methods from derived class by using base keyword in C#.

Categories: C#.Net

The use of "this" Keyword in C#, constructor chaining in .Net

This discuss about what is the use of "this" keyword in .Net, when can we use "this" keyword in C# and how can avoid scope ambiguity in C#.Net. It also explains about constructor chaining in C#.