Thanks - I KNEW it was user error on my part. And something simple. :)

I must have read that page several times and skipped over QueryString (and
Params) every time. Not to mention missing the comment about "POST" in Form.


Thanks again,
Greg

-----Original Message-----
From: Tim Pushor [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 12, 2004 4:47 PM
To: Youngblood, Gregory (SAIC)
Cc: [EMAIL PROTECTED]
Subject: Re: Annoying problem POST works, GET does not, please help


Straight from 
http://www.apache-asp.org/objects.html#%24Request-%3EFo76659178:

$Request->Form($name)

Returns the value of the input of name $name used in a form with POST 
method.

... Later on ...

$Request->QueryString($name)

Returns the value of the input of name $name used in a form with GET 
method, or passed by appending a query string to the end of a url ..

Check $Request->Params on the same page for a way to do what you want (I 
think) although thats not valid ASP..

Tim

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to