Archive for June, 2011

MVP design pattern of ASP.NET

Posted: June 9, 2011 in ASP.NET

The MVP is Model, View , Presenter. This pattern is how the interaction between these layers can be done. View: View can be your Aspx page in your web applications or any user controls/Interface for the end user. Model: Contains all the business logic. Presenter: Works as the intermediate agent for Model and View. It [...]

Windows Communication Foundation (WCF) is a dedicated communication framework provided by Microsoft. WCF is a part of .NET 3.0. Creating and Consuming a Sample WCF Service: Three major steps are involved in the creation and consumtion of the WCF services. Those are: 1. Create the Service.(Creating) 2. Binding an address to the service and host [...]