Forum de discussion
Forum « Programmation ASP » (archives)
Re: Petit pb sur une requete tte simple????
Envoyé: 9 juin 2004, 5h46 par snoop
tu veu + de code pa de pb :
liste1 = Request.Form("liste1")
liste2 = Request.Form("liste2")
If liste1 <> "0" then
temp = temp & liste1 & ","
controle.addnew
controle("Liste") = liste1
controle("valider") = "non"
controle("greve") = numero
controle.update
End if
If liste2 <> "0" then
temp = temp & liste2 & ","
controle.addnew
controle("Liste") = liste2
controle("valider") = "non"
controle("greve") = numero
controle.update
End if
If temp <> "" then
temp = Left(temp, len(temp)-1)
If len(temp) < 3 then
liste2.Open "SELECT * FROM LISTE WHERE Num = "&temp , conx
Else
liste2.Open "SELECT * FROM LISTE WHERE Num in (" & temp & ")", conx
End if
End if
Réponses
|