Hi, I have some problem Binding a dataSet that come from a method in a
WebService I created. My Web forms call the function from the
WebService and receive the dataSet. How can I bind this dataSet to a
dataList and some Textfields. What I want to do is select the result
in the dataList then the selected result appears in textField so I can
update those field. Does anyone have a clue?

CG

DataBinding Dataset from a WebService by dip

dip
Mon Sep 15 16:00:03 CDT 2003

Here's a sample that binds a dataset returned by a
webservice to a datagrid.

http://samples.gotdotnet.com/quickstart/aspplus/doc/servic
esanddata.aspx

Hope this helps
- dip
>-----Original Message-----
>Hi, I have some problem Binding a dataSet that come from
a method in a
>WebService I created. My Web forms call the function
from the
>WebService and receive the dataSet. How can I bind this
dataSet to a
>dataList and some Textfields. What I want to do is
select the result
>in the dataList then the selected result appears in
textField so I can
>update those field. Does anyone have a clue?
>
>CG
>.
>

Re: DataBinding Dataset from a WebService by Nishith

Nishith
Wed Sep 17 03:44:56 CDT 2003

I was doing the same thing ... not sure but there seems to be a difference
between normal binding a normally filled dataset to a grid and binding a
dataset returned from the webservice. Looks like if you get a dataset from a
webservice, even though it is a windows form, you have to call the
SetDataBinding() method of the grid (normally i would have expected the data
to get bound as soon as the datasource is set)

"CG" <cgauthier@genetec.com> wrote in message
news:c46d70fa.0309151153.3fdcacd5@posting.google.com...
> Hi, I have some problem Binding a dataSet that come from a method in a
> WebService I created. My Web forms call the function from the
> WebService and receive the dataSet. How can I bind this dataSet to a
> dataList and some Textfields. What I want to do is select the result
> in the dataList then the selected result appears in textField so I can
> update those field. Does anyone have a clue?
>
> CG