Link to home
Start Free TrialLog in
Avatar of duclee
duclee

asked on

how to make these 2 dropdownlist

I have two dropdownlists:
- The first Gets the manufacturers onload
-The second gets the models from the selected value of the first

when i choose 1 from the first ddl, the second ddl will get values without postback

example:
http://www.thegioimobi.com/Compare.aspx?ModelId1=24&ModelId2=551&ModelId3=617
ASKER CERTIFIED SOLUTION
Avatar of surajguptha
surajguptha
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of duclee
duclee

ASKER

i think so, but is there anyway else?
If you wait for ASP.Net 2 then you can make use of postbacks through XML, which does not refresh the entire page. Instead it only refreshes the data.

Duclee,
 You either have to go back to server to get the data into the second drop down. Or you have to store all the data for the second data into a javascript array to do the manipulation. There is no other way. Choose one and let us know
Avatar of duclee

ASKER

i use javascript, and its ok now, thanks all