Timo
yes, as with all things in software, it's just a matter of programming.
but
how much programming are you willing to do?
1st up: I think your terminology is off: client-side script cannot
interact with a DropDownList control, which is a server-side artifact.
Client side script can however, use DHTML and build a SELECT item and
populate it with fields from a DataSet. It would require lots of parsing of
XML. Not pretty. But possible.
If you really want to bind to the *control*, then you want to consume the
dataset on the server side (where the control is). Then you wouldn't use
client-side script at all. You'd use a .NET language. And it would be much
easier than the above.
Another alternative: you could embed a Windows Forms app within a webpage
and that winforms app could consume a dataset in the manner you described.
Also much easier than the first option there. . .
happy hunting,
-D