本文介绍了如何基于第一个组合框中的选定项目绑定第二个组合框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我需要绑定两个组合框---- 1)我有一个列 stuid int pk_stuid , stuname varchar(50),地址varchar(50) 2)和第二个表是 age int FK_stu ,类varchar(10), stuid int .. 。现在基于第一个组合框中的所选项目(stuid)我必须在第二个组合框中显示该学生的年龄或类别...我已经成功地从后端绑定第一个组合框但我不能基于该第二个组合框绑定第二个组合框首先......任何答案....请建议我解决方案 I have a requirement of binding two comboboxes----1)i have a table of columns stuid int pk_stuid,stuname varchar(50),address varchar(50)2) and 2nd table is age int FK_stu,class varchar(10),stuid int...now based on the selected item(stuid) in first combobox i have to display the age or class of that student in second combobox...i have succesfull to bind first combobox from backend but i cant to bind the second combobox based on the first... any answers....please suggest me 解决方案 这篇关于如何基于第一个组合框中的选定项目绑定第二个组合框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-10 14:01