dropdown control filled using web service

  • Thread starter Thread starter Jon Paugh
  • Start date Start date
J

Jon Paugh

Hi All,

Let's say I have a dropdown control and its value is
dependent on the value of other fields in the page. So
the value of one of the controls changes, and I want to
change the value shown in the dropdownlist.

is there a way to change the values shown in the
dropdownlist without doing a postback to the server? I
was thinking that a web service could be called somehow?

I have seen in ASP.NET 2.0 there is some built in
capability to do this but doesn anyone know how to do
this in 1.1?

Thanks,

Jon Paugh
 
Hi Jon
If writing few line of java script doesn't bother you
you can try accessing a webservices which supplies you the required data to be populated
You may make use of Microsoft.XMLHTTP or Msxml2.DOMDocument ActiveX objects to Access the webservice from the client side
 
Back
Top