Request.Form is blank??

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. Blank form
      Try Me.RecordsetClone.RecordCount property. number of records when no match is found form was opened. does not find any
    5. 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 ...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139