I\'m trying to execute classic ASP pages on a windows 2008 64 bit R2 box.
Initially the problem was with registering dlls : That\'s now fixed. Register DLL file on W
I spent several hours chasing this down as well.
In my case, it was caused by reusing a recordset object several times without closing it between DB calls. The code was working without apparent issue in several similar instances, and then one of them just stopped tolerating the process.
The error occurred when I attempted to close the recordset at the end of the page, which made troubleshooting more difficult.
I cleaned up the code, ensuring the recordset was closed between calls, and this resolved the issue.