i want to add some data into dropdownlist from database and don't have duplicate data , so i did this ~
Dim ads As New Web.UI.WebControls.AccessDataSource
ads.DataFile = "~/app_data/board.mdb"
ads.SelectCommand = "SELECT DISTINCT [photo_species] FROM [phototable]"
Dim dv As DataView = ads.Select(New DataSourceSelectArguments)
For i = 0 To dv.Count - 1
DropDownList1.Items.Add(dv.Item(0).Row("photo_species"))
Next
but when i run the code it shows the same data again and again

Change the 0 in this line:
to i: