Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Looping asp.request.forms object
Message
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00198536
Message ID:
00198572
Views:
28
>>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
Is this the correct way to use request.forms ?
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform