It appears that we probably do not have AJAX dropdownlist that binds to a WCF Web Service so I think of another way and wonder if this works or not, so please let me know if my thinking is right:
I have a WCF web service that returns an array of customer IDs that I want to display in a drop down list.
To do that, I think I can use ObjectDataSource and have the drop down list to call that ObjectDataSource.
To use the ObjectDataSource, I have to write a Data Access Class that has select method to call the WCF service to get an array of customer IDs.
Do you think it will work? Or does any of you have a better solution to this problem? Thanks in advance!
Qbui