Tags: , , | Posted by Kevin Babcock on 8/31/2009 10:19 PM | Comments (1)
If you’re working with traditional ADO.NET data types – like the DataTable – in your data access code and wanting to wire up a web service to serve up data, you’ve likely run into some issues. You’re either getting errors due to failed serialization or trying to deal wi... [More]
Tags: , , | Posted by Kevin Babcock on 5/13/2009 1:54 AM | Comments (1)
When it comes to web services, there are no shortage of options for .NET developers. And with performance expectations continuing to rise, web services are becoming an integral part of our web applications. They allow developers to transfer the bare minimum of data from server to client, leaving UI ... [More]
Tags: , , | Posted by Kevin Babcock on 5/6/2009 7:50 PM | Comments (0)
When using the jQuery client library to make an asynchronous call to the server, there are 6 built-in options available to you - $.ajax(), load(), $.get(), $.getJSON(), $.getScript(), and $.post(). The last 5 of them are simply abstractions of the first, using certain default values for the paramete... [More]