everybody.
I don't know how to solve this problem. I have a table Employees with three columns id int primary key, first_name varchar not null, last_name varchar not null.
Also, I have table Product which consist of id_Product primary key, name varchar not null, id_emp int not null which is foreign key.
On web form, I have one combobox that present id_emp column which contain all first_name and last_name from table Employees. When I select certain value from combobox I have to insert in table Product. I don't have any idea how to put first_name and last_name from table Employees in combobox.
Note: When you insert data first_name and last_name from combobox, you should get the same value in id_emp such as value in id column in table Employees.
I hope so that I don't confuse you. I tried to present my problem on simple way.