I was recently asked how to call WCF Service asynchronously from ASP.NET. Here's my sample code: 1) WCF Service Library Implementation namespace WcfServiceLibrary1 { [ServiceContract] public interface ISampleService { [OperationContract] string SayHelloWorld();
Read More...