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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Parameter passing problem

Status
Not open for further replies.

frogggg

Programmer
Jan 17, 2002
182
US
html page gathers info, and I am trying to pass it to the asp page to check it against an Access database.
I am getting this error message.

Provider cannot derive parameter information and SetParameterInfo has not been called.

This is my code. The form is sent by get.
rsValidatePassword.setParameter 0, Request.QueryString("txtUserName")
rsValidatePassword.setParameter 1, Request.QueryString("txtPassword")
rsValidatePassword.open

what's wrong
 
does Request.QueryString("txtUserName") and
Request.QueryString("txtPassword") have values in them?

 
I know the values are being passed to the page, but as I can't open my debugger, I don't know if request.querystring got them. How else can I find out?
 
that worked. request.querystring has them.
so where are they?
btw, this error message comes up by every single page that requires parameters. Is something wrong with my data connection?
thanks for your help
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top