Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Looping asp.request.forms object
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Applications Internet
Divers
Thread ID:
00198536
Message ID:
00198566
Vues:
17
>What is want to do is this....
>
>FOR i = 1 TO orequest.forms.count
> lcfoxname = orequest.forms(i).name
> IF TYPE(lcfoxname) # "U" && Fox knows what this is
> &lcfoxname = orequest.forms(i).item()
> ENDIF
>
>
>
>ENDFOR
>
>Is this posssible? I thought I would ask before I lost all of my hair testing and debugging ASP.

I'd avoid the macro expandsion by:
FOR i = 1 TO orequest.forms.count
   IF TYPE('orequest.forms[i].name') # 'U'
      STORE orequest.forms[i].item TO (orequest.forms[i].name)
   ENDIF
ENDFOR

or, better:

FOR EACH form IN oRequest.forms
   IF TYPE(form.name) # 'U'
      STORE form.item TO (form.name)
   ENDIF
ENDFOR
>Thanks,
>John S. Huddleston
EMail: EdR@edrauh.com
"See, the sun is going down..."
"No, the horizon is moving up!"
- Firesign Theater


NT and Win2K FAQ .. cWashington WSH/ADSI/WMI site
MS WSH site ........... WSH FAQ Site
Wrox Press .............. Win32 Scripting Journal
eSolutions Services, LLC

The Surgeon General has determined that prolonged exposure to the Windows Script Host may be addictive to laboratory mice and codemonkeys
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform