Archive for the '.NET' Category

Binding Objects to Client-Side Controls.

Wednesday, August 22nd, 2007

This article is a continuation of Part 1 : Returning objects from a web service.
Windows form controls can easily be bound to either a single object or a collection of objects returned to the client by a web service.
This article demonstrates how to bind a object array to a DataGridView.The code for this demo can […]

Returning Objects From a .NET Web Service.

Wednesday, August 22nd, 2007

This article covers details on how to return object(s) from a .NET Web Service.
The first section demonstrates how to return object(s) from a .asmx web service and the second shows how to bind the objects to client controls.
Part 1: How to return objects from a Web Service.
Part 2 : Binding Objects to Window Client Controls
Introduction
It […]