upload + choix multiple - ASP - Programmation
Marsh Posté le 21-11-2003 à 17:13:02
Pour ceux que ça interesse :
For each item In mySmartUpload.Form
' Select each value of the current item
' *************************************
If item = "Nom_champ" Then
For each value In mySmartUpload.Form(item)
Response.Write(item & " = " & value & "<BR>" )
Next
End If
Next
Marsh Posté le 21-11-2003 à 16:45:09
Bonjour
1 / Sur un formulaire j'ai un champ à choix multiple
<select name=IdClient multiple size='10'>
<option value="1">Client1</option>
...
</select>
---------------
J'arrive à récupérer ous les champs sélectionnés grâce à
for j=1 to Request("IdClient" ).Count
Request("IdClient" ).item(j)
next
----------------------------------------------------------------
2 / Sur un autre formulaire j'ai une upload de fichier et quelque autre champs
Je recupére le tout grace à
Set mySmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload" )
mySmartUpload.Upload
mySmartUpload.Form("nom_champ" )
----------------------------------------------------------------
3 / Sur un autre formulaire j'ai une upload et un champ à choix multiples donc j'essaye
Set mySmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload" )
mySmartUpload.Upload
for j=1 to mySmartUpload.Form(tableau(5,1)).Count
mySmartUpload.Form("nom_champ" ).item(j)&"')"
next
------------
Mais là erreur suivante :
Erreur d'exécution Microsoft VBScript error '800a01b6'
Cet objet ne gère pas cette propriété ou cette méthode: 'mySmartUpload.Form(...).item'
Merci de m'aider si vous pouvez
So07