If you receive the following error :
Microsoft OLE DB Provider for ODBC Drivers error ' 80004005 '
[Microsoft] [ODBC Microsoft Access Driver] Common error cannot open registry key ' temporary (volatile) Jet DSN for process 0xa78 Thread 0XADC DBC 0X26A0CFC J ET '.
The first step: Please set the database file to allow users to iusr_machine (anonymous access using account) have writable permissions;
Step Two: if not, you can set the registry HKEY_LOCAL_MACHINE\SOFTWARE\ODBC to allow users to iusr_machine (anonymous access using account) have writable permissions;
The third step: if not, it should be your database file problem or connection string is wrong;
If there is a failure to upload a large file , use the following workaround:
In general, uploading files with ASP in Win2k3 will not be directly successful because the system makes a restriction by manually modifying its settings, as follows:
Turn off IIS Admin Service in service ( method one: start--Settings--Control Panel--management tool--service--find service to stop directly; method two: execute command from cmd iisreset.exe stop);
Find the MetaBase.xml under windows\system32\inesrv\ (open with Notepad);
Open, find aspmaxrequestentityallowed change him to the required value, the default is 204800, that is 200K;
Then restart the IIS Admin service (run Iisreset.exe/start).
This is the solution to solve the common problems of ASP, I hope to help you learn.