I'm trying to implement a web service based cascading drop down solution (countries-cities).
For this I have built an LDAP web service that gets the necessary second-level data (cities) once provided with a parameter (country).
This parameter needs to be passed from the first drop down to the web service.
How can I perform the following steps:
1. Pass the current first drop down value to the webservice
2. Assign the resulting location list to the second drop down.
PS: I'm writing everything in C# and my form must be browser-enabled.