c# - combobox fill from another combobox selection? -


  protected sub rcmbdatabaselist_selectedindexchanged(sender object, e telerik.web.ui.radcomboboxselectedindexchangedeventargs) handles rcmbdatabaselist.selectedindexchanged                 try                     dim strdestinationconnstring string = "data source=.;initial catalog=" & rcmbdatabaselist.selectedvalue & ";persist security info=true;user id=sa;password=ssmits"                     viewstate("strsyncdestinationconnstring") = strdestinationconnstring                      call getdestinationtablelist()                 catch ex exception                  end try             end sub             protected sub rcmbtablelist_selectedindexchanged(sender object, e telerik.web.ui.radcomboboxselectedindexchangedeventargs) handles rcmbtablelist.selectedindexchanged                 try                     call getdestinationclmlist(rcmbtablelist.selectedvalue)                 catch ex exception                  end try             end sub 

above 2 event , below code function how fill in web.

auto post true. no error given when debug.


Comments

Popular posts from this blog

javascript - Feed FileReader from server side files -

oracle - pls-00402 alias required in select list of cursor to avoid duplicate column names -

c++ - Qt: when can I access dynamic properties from qtcreator? -