I have the following line of code in my asp page
Dim ix
For ix = 1 to Request.Form.Co unt
fieldName = Request.Form.Ke y(ix)
fieldValue = Request.Form.It em(ix)
Response.Write fieldName
Response.Write fieldValue &
Next
Response.End
It is not returning the results of any field on the previous form page.
Does anyone know what I might look for? Thanks.
David
Dim ix
For ix = 1 to Request.Form.Co unt
fieldName = Request.Form.Ke y(ix)
fieldValue = Request.Form.It em(ix)
Response.Write fieldName
Response.Write fieldValue &
Next
Response.End
It is not returning the results of any field on the previous form page.
Does anyone know what I might look for? Thanks.
David
Comment