i have combobox in which membership_desc=gold,silver,platinum is displayed
and have textbox in which i want that fees displayed automatically in it
as
gold=100
silver=200
platinum=300
form_load();
combobox1.datasource=ds.tables["membership_details"];
combobox1.displaymember="membership_type";
combobox1.valuemember="membership_id";
combobox1_selected_index_chanded();
da.selectcommand=neew sqlcommand("select membership fees from membership_details where membership_desc='"+combobox1.selectedvalue+"'",cs);
textbox7.text=??????????????????????????????????????????
as i do binding of text box it show ERROR that binding is done in two contexts
so how i will show the data in text box.....
......thanks in advance....