regarding asp error

  • Thread starter Thread starter akshar108 via DotNetMonster.com
  • Start date Start date
A

akshar108 via DotNetMonster.com

currently i m working on asp website when i upload all things with my
database in ms access i get following error can any one help me
Microsoft JET Database Engine error '80040e09'

Cannot update. Database or object is read-only.

/Lvnw_New/step1.asp, line 391

and while i m useing CDONTS for sending mail i get alsot error like


Server object error 'ASP 0177 : 800401f3'

Server.CreateObject Failed

/Lvnw_New/contact.asp, line 60

800401f3
 
This is an ASP.NET group, not ASP.

Regardless. The Access error is common when one of three things is
happening.

1. Database copied to folder with ACLS that restrict access to the web
server user (anonymous user).
2. You have the database open in Access while you are attempting to hit it.
3. The web user does not have folder permissions (if you cannot create a
lock file, you cannot play with Access)

Make sure IUSR has access to the database and database folder. This could
also be other users, depending on the version of windows. Just check the
user that IIS is running under on your server.


CDONTS

Most common is CDONTS is not actually registered on the server
(regsvr32.exe). You could also have a corrupt MDAC on the server, which
would require a reinstall.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box!
|
*************************************************
 
Back
Top