in my webpage i have a combo box which will get its data from a xml file, is there any way to bound the combo box to the part of the xml file directly, or do we have to open,find,read the values and add them to the comboboxes items one by one?
Printable View
in my webpage i have a combo box which will get its data from a xml file, is there any way to bound the combo box to the part of the xml file directly, or do we have to open,find,read the values and add them to the comboboxes items one by one?
i think the best way is to load the xml file into a dataset, after doing this can somebody please tell what has to be done to bound it to a combobox, i tried
combobox.datasource=dataset.tables(0)
but combobox still empty
thanks...