Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DropDown not populating All records 1

Status
Not open for further replies.

kurie

Programmer
Jun 4, 2008
170
ZA
i have a problem with a dropdown box in Ver3.5. My dropdown is replacing all values with the last record to be read from the datareader. if theere are 5 records, all the values will be the last one to be read. does anyone see what im doing wrong here. here is the code
Dim cboItem As New ListItem()
cboItem.Text = "Select Customer"
cboItem.Value = "0"
dwnCustomers.Items.Add(cboItem)
dwnCustomers.DataBind()
While SqlDtr.Read()
cboItem.Text = SqlDtr("CustomerID").ToString()
cboItem.Text = SqlDtr("Customer").ToString()
dwnCustomers.Items.Add(cboItem)
dwnCustomers.DataBind()
End While
 
You need one extra line of code in your while loop.

Code:
Dim cboItem As New ListItem()
            cboItem.Text = "Select Customer"
            cboItem.Value = "0"
            dwnCustomers.Items.Add(cboItem)
            dwnCustomers.DataBind()
            While SqlDtr.Read()
                [b]cboItem = New ListItem[/b]
                cboItem.Text = SqlDtr("CustomerID").ToString()
                cboItem.Text = SqlDtr("Customer").ToString()
                dwnCustomers.Items.Add(cboItem)
                dwnCustomers.DataBind()
            End While
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top