Saturday, March 24, 2012

Operation Not Allowed

Alright alright, this is Classic and not .NET but I am new to ASP in general. I am sifting through the code of a previous developer and am getting the following error:
ADODB.Recordset (0x800A0E78)
Operation is not allowed when the object is closed.

The offending code is simply:


function _RS__syncBOFandEOF()
{
if (this.isOpen())
{
this.EOF = this._rsADO.EOF;
this.BOF = this._rsADO.BOF;
this.absolutePosition = this._rsADO.AbsolutePosition;
}
}

As far as I can tell, the recordset has not been closed before this function is called. Any thoughts?I think you should post your question here:view forum 170

0 comments:

Post a Comment