ok... I'm at my whit's end here... I have spent almost half the day just troubleshooting this error...
HELP?
I am setting up a form much like I do in Access; a form that contains sub forms. However, in my ASP pages, I have a main page with two IFRAMES.
Each of these IFRAMES load a "list.asp" and a "details.asp", respectively.
Both pages mentioned above access the same table in the database.. list.asp queries the database w/o any WHERE clause. Details.asp queries the database with a criteria.
But for some reason that I can't figure out, Details.asp keeps returning an error:
with accompanying line number where the error occurs. This line number happens to be where I open the recordset:
Before you ask me to paste my SQL queries... here's the weird thing: When I copy that query AND the line of code to open the recordset over to "list.asp" I have no problems. So this shows me that the query isn't wrong...
argggg... any ideas?
Earnie Eng
HELP?
I am setting up a form much like I do in Access; a form that contains sub forms. However, in my ASP pages, I have a main page with two IFRAMES.
Each of these IFRAMES load a "list.asp" and a "details.asp", respectively.
Both pages mentioned above access the same table in the database.. list.asp queries the database w/o any WHERE clause. Details.asp queries the database with a criteria.
But for some reason that I can't figure out, Details.asp keeps returning an error:
Code:
[Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1.
with accompanying line number where the error occurs. This line number happens to be where I open the recordset:
Code:
rsGL_ClaimDetails.open sSQL_ClaimDetails, myConnection , 3, 1
Before you ask me to paste my SQL queries... here's the weird thing: When I copy that query AND the line of code to open the recordset over to "list.asp" I have no problems. So this shows me that the query isn't wrong...
argggg... any ideas?
Earnie Eng