Hi, this is my first .asp project and I'm having problems passing a URL Variable (I guess you call it QueryString) to a query. I thought it would be simple enough, but I keep getting an error.
Here's the query:
And here's the error:
What am I doing wrong? The url string is a numeric value, like this: whatever.asp?schoolid=17817
Hope This Helps!
ECAR
ECAR Technologies
"My work is a game, a very serious game." - M.C. Escher
Here's the query:
Code:
SELECT * FROM tblname WHERE schoolid = Request.QueryString('schoolid') ;
Code:
Microsoft JET Database Engine error '80040e14'
Undefined function 'Request.QueryString' in expression.
Hope This Helps!
ECAR
ECAR Technologies
"My work is a game, a very serious game." - M.C. Escher