Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Has anyone else seen this?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0

Hey,

I have a little problem. I'm trying to get items from a query string (simple enough) using a request object. ie:

//myServer/asp/aspage.asp?value=1

Request.QueryString ("value"), it returns 1. The answer that I would expect. If I use the Request object ie:

Request("value") it doesn't seem to find it, returns undefined.

Has anyone else seen this inconsistency? Or I'm hallucinating again.

 
I did not quite understand what you want, but let's see if this helps.

The Request.QueryString() is used to retrieve values from the URL, that got there thought a METHOD=&quot;get&quot; for example, it is retrieved by calling it or assinging it to a varilable (myVAR = Request.QueryString(&quot;objectNAME&quot;)) and using the variable like <%=myVAR%> in the ASP - HTML..
Not quite sute if this is what you wanted, but, there you go.


NightWatcher
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top