listbox to display
-
Hi I have a dropdownlist where the user.the user will select the name of the project from.Please help me with the code for my problem......... ************ After the user selected the project Name on my listbox display the name of all the Project Members working under that particular project. Please help me oga m
-
Hi I have a dropdownlist where the user.the user will select the name of the project from.Please help me with the code for my problem......... ************ After the user selected the project Name on my listbox display the name of all the Project Members working under that particular project. Please help me oga m
Hey that is very simple. What you have tried so for? What is the Error you are getting?
Regards, Satips.
-
Hi I have a dropdownlist where the user.the user will select the name of the project from.Please help me with the code for my problem......... ************ After the user selected the project Name on my listbox display the name of all the Project Members working under that particular project. Please help me oga m
first u`ll need to execute a select query where in u`ll select on the bases of the project selected from the drop down list such as "Select * from project where projname = '+ddwlist.selectedvalue+' then u`ll populate ur listbox like this while(rd.read) { listbox1.items.add(rd["projmembers"].tostring) } i hope this solves ur problem
Kunal