If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I just got my page to work, but there still is a problem. My drop down list is not populated by the EmployeeID's that it should be. Rather, "System.Data.Common.DbDataRecord" appears muliple times. Any clue how to get the EmployeeID's to show?
And one way to not have something appear multiple times even though it might be stored in multiple records is to use the word DISTINCT in the SQL statement:
strSQL = "SELECT DISTINCT EmpID FROM MyTable ORDER BY EmpID"