help with "POST" ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • brian

    help with "POST" ?

    i have a form processing being done by an asp page which works ok with
    "GET".

    two text inputs are sent and processing is done by an asp page which
    outputs the two values.
    with GET both values are outputted fine. but when method is changed to
    POST no values are outputed.
    (the input value chosen for testing was 2 characters only. is this a
    limitation with the web server...)

    action="http://www.testsite.co m/test.asp"
    method="get">
    Name : <input type="text" name="text1">
  • Steve van Dongen

    #2
    Re: help with &quot;POST&quot ; ?

    On 19 Oct 2003 15:51:08 -0700, brian_dell3@yah oo.com (brian) wrote:
    [color=blue]
    >i have a form processing being done by an asp page which works ok with
    >"GET".
    >
    >two text inputs are sent and processing is done by an asp page which
    >outputs the two values.
    >with GET both values are outputted fine. but when method is changed to
    >POST no values are outputed.
    >(the input value chosen for testing was 2 characters only. is this a
    >limitation with the web server...)
    >
    >action="http ://www.testsite.co m/test.asp"
    > method="get">
    > Name : <input type="text" name="text1">[/color]

    If the ASP uses Request("text1" ) then either GET or POST will work.
    If it uses Request.QuerySt ring("text1") then only GET will work.
    If it uses Request.Form("t ext1") then only POST will work.

    Regards,
    Steve

    Comment

    Working...