'Microsoft ole db provider for ODBC drivers' (0x80004005)
[Microsoft] [ODBC Microsoft Access driver] The File '(unknown)' is not found )'.
/Conn/conn1.asp, row 3rd'
Iis7.0 configuration is set correctly in Windows 7, and ASP is set correctly.
But the above error will pop up during the runtime!
My database connection CodeYes:
Copy codeThe Code is as follows: <%
Set conn = server. Createobject ("ADODB. Connection ")
Conn. Open "driver = {Microsoft Access Driver (*. mdb)}; DBQ =" & defaultdir & server. mappath ("worker. mdb ")&";"
Set rs = server. Createobject ("ADODB. recordset ")
Set RS1 = server. Createobject ("ADODB. recordset ")
Set rs2 = server. Createobject ("ADODB. recordset ")
Set rs3 = server. Createobject ("ADODB. recordset ")
%>
There are many versions of explanations circulating in the network. I have tried the following solutions:
A user group permission is missing for the Windows/Temp folder.
In IIS installed by default in Windows 7, the missing user group is authenticated users.
Add
Authenticated Users
The default permission is read and write. OK. The system is running normally.