Quando usavo ChiliASP questo errore non mi veniva fuori:

Tipo di errore:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][Driver ODBC Microsoft Access]Errore generale.
Impossibile aprire la chiave 'Temporary (volatile) Jet DSN
for process 0xb04 Thread 0xc4c DBC 0x22b6004 Jet' del
Registro di sistema.
/camp3000/Admin/check_user.asp, line 24

il mio codice:
codice:
<%
'Dimension variables
Dim adoCon 		'Database Connection Variable
Dim strCon		'Holds the Database driver and the
path and name of the database
Dim rsCheckUser 		'Database Recordset Variable
Dim strAccessDB 	'Holds the Access Database Name
Dim strSQL 		'Database query sring
Dim strUserName 	'Holds the user name

'Initalise the strUserName variable
strUserName = Request.QueryString("txtUserName")

'Check the database to see if user exsits and read in there
password
'Initialise the strAccessDB variable with the name of the
Access Database
strAccessDB = "db\users.mdb"

'Create a connection odject
Set adoCon = Server.CreateObject("ADODB.Connection")
			 
'Database connection info and driver
strCon = "DRIVER={Microsoft Access Driver
(*.mdb)};uid=;pwd=grinder050381; DBQ=" & Server.MapPath(strAccessDB)

'Set an active connection to the Connection object
adoCon.Open strCon

'Create a recordset object
Set rsCheckUser = Server.CreateObject("ADODB.Recordset")

'Initalise the strSQL variable with an SQL statement to
query the database
strSQL = "SELECT tblUsers.Password FROM tblUsers WHERE
tblUsers.UserID ='" & strUserName & "'"

'Query the database
rsCheckUser.Open strSQL, strCon

'If the recordset finds a record for the username entered
then read in the password for the user
If NOT rsCheckUser.EOF Then
	
	'Read in the password for the user from the database
	If (Request.QueryString("txtUserPass")) =
rsCheckUser("Password") Then
		
		'If the password is correct then set the
session variable to True
		Session("blnIsUserGood") = True
		
		'Close Objects before redirecting
		Set adoCon = Nothing
		Set strCon = Nothing
		Set rsCheckUser = Nothing
		
		'Redirect to the authorised user page and
send the users name
		Response.Redirect"admin.asp?name=" &
strUserName
	End If
End If
		
'Close Objects
Set adoCon = Nothing
Set strCon = Nothing
Set rsCheckUser = Nothing
	
'If the script is still running then the user must not be
authorised
Session("blnIsUserGood") = False

'Redirect to the unautorised user page
Response.Redirect"stop.htm"
%>
Suggerimenti?