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

Error message /NetworkForms/_ScriptLibrary/Recordset.ASP, line 636

Status
Not open for further replies.

bryant89

Programmer
Nov 23, 2000
150
CA
/NetworkForms/_ScriptLibrary/Recordset.ASP, line 636

the error is on the line that reads this: this._rsADO.Open(); in the code to follow.

// double-check after ONBEFOREOPEN is fired
if (!this.isOpen())
{
@if (@debug)
try {
@end
this._rsADO.Open();
@if (@debug)
} catch (e) {
this._reportError(e,'open');
throw e;
}
@end
}
My pages were working fine and all of a sudden I am getting this stupid error. I know nothing about what is going in any of the _ScriptLibrary's. It is a stupid simple error that I have been dealing with all day and I can not figure it out.

Please any suggestions will help.
 
Hold on cowboy...

this might be your problem.

Only events that are commune to ASP and DHML are supported.
the onafteropen is not.

use advise() before opening the recordset


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top