Ask a Question related to ASP Database, Design and Development.
-
Bijoy Naick #1
Request.Form is blank??
I am experiencing a strange problem.. I've got a basic form with
METHOD = POST and ACTION = "saveInput.asp". The form has over approx
100 fields.
In saveInput.asp, I am able to sucessully write out the input values..
For example, Request.Form("userName") returns the appropriate value.
However, to simply the data retrieval, I read the fieldnames from a
text file, store the values in an array. Then I loop through the
array, and do a :
fieldName = CStr(fieldArray(fieldNum))
fieldVal = Request.Form(fieldName)
fieldVal always returns NOTHING.. I know that the fieldNames are read
properly from the text file. I am able to print out the fieldName
before extracting the value from Request.Form.
Any thoughts?
Bijoy Naick Guest
-
Confused about a REQUEST.FORM and a REQUEST.QUERYSTRING
This is snipit of code, supplied by PayPal with explanation about what has to be done to access their back end. I am confused because they first... -
best way to get data: request.form, request.params, controlname.value
Hi! I think I remember somewhere that using request.form was a bad idea (I can't say I remember why). So I'm wondering: What is the best way to... -
HELP! Printing form gives 1 blank page
I am having trouble printing forms from Access. When I print a form, Access spits out a page that has a 1/4" stripe across the top, then it leaves... -
Blank form
Try Me.RecordsetClone.RecordCount property. number of records when no match is found form was opened. does not find any -
Blank form fields passed to SQL
In your sql statement, check if the value is empty. I don't know what scripting language you are using so I will give an example using coldfusion ... -
Kris Eiben #2
Re: Request.Form is blank??
Hmm. Have you tried manually setting fieldName = "userName" and then
getting fieldVal? Have you tried using Trim() on fieldName?
"Bijoy Naick" <b_naick@yahoo.ca> wrote in message
news:e3c37c4b.0307311046.dea0d4@posting.google.com ...> I am experiencing a strange problem.. I've got a basic form with
> METHOD = POST and ACTION = "saveInput.asp". The form has over approx
> 100 fields.
>
> In saveInput.asp, I am able to sucessully write out the input values..
> For example, Request.Form("userName") returns the appropriate value.
>
> However, to simply the data retrieval, I read the fieldnames from a
> text file, store the values in an array. Then I loop through the
> array, and do a :
>
> fieldName = CStr(fieldArray(fieldNum))
> fieldVal = Request.Form(fieldName)
>
> fieldVal always returns NOTHING.. I know that the fieldNames are read
> properly from the text file. I am able to print out the fieldName
> before extracting the value from Request.Form.
>
> Any thoughts?
Kris Eiben Guest
-
bijoy naick #3
Re: Request.Form is blank??
TRIM!!! Thx.. It did the trick!!
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
bijoy naick Guest
-
Ray at #4
Re: Request.Form is blank??
What does this return:
<%
fieldName = CStr(fieldArray(fieldNum)
response.write "The name of the field I'm about to try to pull a value from
is " & fieldName & ".<br>"
response.write "True of False: I need to trim the value from the array: " &
Not (fieldName = Trim(fieldName)) & "<br>"
response.write request.form(fieldName)
response.end
%>
Ray at work
"Bijoy Naick" <b_naick@yahoo.ca> wrote in message
news:e3c37c4b.0307311046.dea0d4@posting.google.com ...> I am experiencing a strange problem.. I've got a basic form with
> METHOD = POST and ACTION = "saveInput.asp". The form has over approx
> 100 fields.
>
> In saveInput.asp, I am able to sucessully write out the input values..
> For example, Request.Form("userName") returns the appropriate value.
>
> However, to simply the data retrieval, I read the fieldnames from a
> text file, store the values in an array. Then I loop through the
> array, and do a :
>
> fieldName = CStr(fieldArray(fieldNum))
> fieldVal = Request.Form(fieldName)
>
> fieldVal always returns NOTHING.. I know that the fieldNames are read
> properly from the text file. I am able to print out the fieldName
> before extracting the value from Request.Form.
>
> Any thoughts?
Ray at Guest



Reply With Quote

