views:

58

answers:

0

So I've been moving a lot of stuff into a webservice because it makes the whole thing make more sense to me personally. Also makes AJAX easier for me.

Right now the user will say they want to save a new contact somewhere then, through the webservice, they are added to a database and that call returns the new primary key so that I can change the RadComboBox automatically to this new record. However I can't seem to find a way to re-bind the combo box to the database so that I can correctly set the selected value. Does anyone have any good advice on how to do this? Should I not even be using the RadCombobox? (preferably like an answer as the whole things stands but I welcome some good alternatives to the combobox)

Please keep in mind I'm avoiding postbacks at all costs (except security costs)

Thanks much!!