Topic awaiting preservation: querystring variable (Page 1 of 1) |
|
---|---|
Bipolar (III) Inmate From: KY |
posted 06-17-2002 20:36
I am calling a variable from one page to another: "lookup.asp?article=ps1" using request.querystring |
Bipolar (III) Inmate From: Southern Alabama, USA |
posted 06-17-2002 21:01
"SELECT * FROM table WHERE ID=" & article1 & "" |
Bipolar (III) Inmate From: KY |
posted 06-17-2002 21:08
DIdn't work, it says too few paramaters. |
Paranoid (IV) Inmate From: 127.0.0.1 |
posted 06-17-2002 21:35 |
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 06-17-2002 22:24
tis' asp pugz. (it's in that query string but not very clear) |
Bipolar (III) Inmate From: |
posted 06-18-2002 09:34
I think code: article1 = request.querystring("article")
|
Bipolar (III) Inmate From: dk's house of love |
posted 06-18-2002 13:17
ID is almost always a numeric value though so I'd think: code: article1 = request.querystring("article")
|
Bipolar (III) Inmate From: KY |
posted 06-18-2002 14:38
Thanks for the help guys. |