Error codes in
ASP can drive you crazy sometimes.
First, this in general means there is a
PERMISSION problem getting to the
DATABASE. Usually this happens when you do a
security patch on your server,
reboot your server, or
install firewall software. All of these things can cause your web user to lose permission to access the
critical files (like your database).
So first, check the basics. Make sure that IUSR has
write permission to both the directory holding the database file and to any temp directories being used. Make sure that the
DSN connection string is actually pointed at the directory you are working on!
Check out my Connection String Here!
Even if you thought these were set properly, a
reboot or a
security upgrade might have unset them. Check them out!
Next, look into any other security blocks that may have been added. Have you added any anti virus or firewall software recently? Try turning it off and see if that helps. If it does, turn the software back on and then go into its configuration, and allow access to the directories in question.
Hope that's helps..
Cheers..