Issue with using arraylist elements as InsertParameters

V

VB Programmer

I have an array list that is filled with ProductId's. I wanted to traverse
thru the arraylist and use these product as parameters in a SqlDataSource.
It seems to always stay on the 1st element in the arraylist. Any ideas why?

Here's part of the code... (al=arraylist, sds=sqldatasource)

For i = 0 To al.Count - 1
With Me.sdsFreeShip
.InsertParameters("ProductId").DefaultValue = al.Item(i)
.Insert()
End With
Me.sdsFreeShip.DataBind()
Next

Me.lstProductsSelected.DataBind()
Me.lstProductsUnselected.DataBind()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top