This article mainly introduces the solution to the keyword error '80004005' in ASP cannot open the registry. Interested friends can refer to it.
If the following error occurs:
Microsoft OLE DB Provider for ODBC Drivers Error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Common errors Cannot open the registry keyword 'Temporary (volatile) Jet DSN for process 0xa78 Thread 0xadc DBC 0x26a0cfc Jet'.
Step 1: Please set the database file to allow user IUSR_Machine (anonymous access to user account) to have writable permissions;
Step 2: If it doesn't work, you can set the registry HKEY_LOCAL_MACHINE/SOFTWARE/ODBC to allow user IUSR_Machine (anonymous access to the user account) to have writable permissions;
Step 3: If it doesn't work, it should be that there is a problem with your database file or the connection string is incorrect;
If an error occurs that fails to upload a large file , use the following solution:
Generally speaking, uploading files with ASP in Win2k3 will not be successful directly, because there is a restriction in the system, and you can manually modify its settings. The method is as follows:
Close the iis admin service service in the service ( Method 1: Start--Settings--Control Panel--Administrative Tools--Services--Stop the service when finding the service; Method 2: Execute the command iisreset.exe /stop from CMD);
Find metabase.xml under windows/system32/inesrv/ (open with notepad);
Open, find ASPMaxRequestEntityAllowed and modify it to the required value, the default is 204800, that is, 200K;
Then restart the iis admin service service (run iisreset.exe /start).
The above is the solution to the common problems of Asp in this article, I hope it will be helpful to everyone's learning.