Date:  11/07/2001 09:13:17 AM Msg ID:  000092
From:  Roger Stanley Thread:  000082
Subject:  Re: FormField
Didn't work...but solved.
task="formfield(')+M.xv+"')"
x=&task



Sent by FoxWeb Support Team on 11/02/2001 07:52:49 PM:
How about FormField(M.xv)?  This should work as long as M.xv is populated with the name of one of your form fields.  By the way, you don't have to know the names of FormFields.  You can retrieve all submitted values by using the Request.FormArray method.

FoxWeb Support Team
support@foxweb.com

Sent by Roger Stanley on 11/02/2001 11:22:42 AM:
I have a loop that creates  inputs based on a record number (recno())
M.xv="r"+ltrim(str(recno()))
<input type="text" name='+M.xv+')
Looking at the source on the screen the name is fine (r1, r2, etc.)
When I try to get the value using FormField I get blanks...

I've tried =FormField('&M.xv'), =FormField('M.xv')... M.xv shows as the proper
input.
what can I try next?
Thanks..