Sometimes you need to run operations behind the scenes, in a different thread from the one that ASP.NET Framework uses to process Web Pages. Multitasking in Web Pages can be quite tricky and difficult cause meshing with threads can make… Read More ›
Month: July 2013
Exchange Json Data with Web API
Web API is the ultimate .NET Framework which allows you to exchange data with a service through HTTP requests. You can send data to it or get back different types of data but the most common usage is the Json… Read More ›
Create and consume WCF Restful Service using an HttpClient
Restful Services are getting more and more popular in our days and .NET developers prefer to build them through the Web API Framework, which let’s be honest it sounds right. You need to know though that WCF Framework also provides… Read More ›
Retrieve Child and Parent column values in ADO.NET
In ADO.NET you can compute Child or Parent column values, coming from DataTable objects that are related using a DataRelation between them. If you don’t know how DataRelation is used in ADO.NET read a previous post of these ADO.NET series…. Read More ›