Problème Résolu.
En ASP 1.1 il faut passer par un Dataview.
Ci-dessous un exemple de code:
'LISTE DES PRODUITS
Dim arParms()As SqlParameter = New SqlParameter(1){}
arParms(0) = New SqlParameter("@arg", 1)
Dim ds As DataSet
'Remplissage du DS grâce à la méthode static du SqlHelper
ds = SqlHelper.ExecuteDataset( _
ConnDB.GetBluberryConnectionString(), _
CommandType.StoredProcedure, _
DALCLasses.DataBase.DBProcStoc.C_REP_ListeProduits, arParms)
ds.Tables(0).TableName = _
DALCLasses.DataBase.DBProcStoc.C_REP_ListeProduits
Dim dv As DataView = _
ds.Tables(DALCLasses.DataBase.DBProcStoc.C_REP_ListeProduits).DefaultView
Dim i As Int32
Dim lstI As ListItem
Dim strLibelle AsString
Dim strNumero AsInteger
If dv.Count > 0Then
lstI = New ListItem("Tous", "0")
DropDownListListeProduits.Items.Add(lstI)
For i = 0To dv.Count - 1
strNumero = CType(dv.Item(i).Item(DALCLasses.DataBase.DBField.C_Num_Produit), Integer)
strLibelle = CType(dv.Item(i).Item(DALCLasses.DataBase.DBField.C_nom), String)
lstI = New ListItem(strLibelle, CType(strNumero, String))
DropDownListListeProduits.Items.Add(lstI)
Next
EndIf