Hi,
I bind two dropdownlist to view table in SQL server database, the dropdownlist display just fine the only problem is it only selects index 0 and both dropdownlist.
No matter what I select, it only see the first selectedindex, I dunno if the view can be used for this purpose.
Dim myCmd As SqlCommand = New SqlCommand("SELECT DISTINCT storename, storeID FROM dbo.[TimeClock by Cashier]", myConn)
I wanted to read from view table because I query to filter out everything I didnt need already.
Thanks
Chris