B
Big E
I'm using ASP.Net and SQL Server 2000.
I have a dropdownlist that is populated from a table.
I also have the dropdownlist looking up another table to see if the user had
previously selected anything.
My issue is that when I try and set the selected value of the dropdown list
to the contents of the stored procedure it only highlights one of
selections. It won't highlight the whole selection. This is what I have so
far.
Thanks E
Dim i As Integer
For i = 0 To dtCom.Rows.Count - 1
lstCommunities.SelectedValue =
dsCom.Tables("tblCommQuesAnsw").Rows(0)("CommunityID")
Next
I have a dropdownlist that is populated from a table.
I also have the dropdownlist looking up another table to see if the user had
previously selected anything.
My issue is that when I try and set the selected value of the dropdown list
to the contents of the stored procedure it only highlights one of
selections. It won't highlight the whole selection. This is what I have so
far.
Thanks E
Dim i As Integer
For i = 0 To dtCom.Rows.Count - 1
lstCommunities.SelectedValue =
dsCom.Tables("tblCommQuesAnsw").Rows(0)("CommunityID")
Next