How do I display a table value in a listbox control? From this code I got the ProjectCode value from the TeamMember_table:
SqlDataAdapter adp = new SqlDataAdapter("select ProjectCode from TeamMember_table where EmpId = '" + eid + "'", conn);
I want to display this ProjectCode value in a listBox.
Platform: Visual Studio 2008, ASP.NET with C#.