Quote Originally Posted by chowsys View Post
I have a radiobuttonlist that have 3 options,and a dropdownlist in which the values come according to the option selected in radiobuttonlist.now i want it to be done without creating postback to the server.how to do it?

If the items to be loaded in the dropdown list is static(like sex difference, Age, % Marks scored etc) , then we could use javascript to load the dropdownlist onclick/onchange/onchecked of radio button.

If the items to be loaded in the dropdownlist is dynamic, (say the data comes from DB), we could use AJAX call backs to load the dropdown list on click of radio button.

Hope this helps....