Ho un problema di questo tipo.
Il database è nella cartella mdb-database nella root del sito.
In una cartella ho un file che richiama il database con questo script
codice:
 
Session.LCID=1040
Set DatabaseWebStore = Server.CreateObject("ADODB.Connection")
DBString =""
DBString = DBString + "Driver={Microsoft Access Driver (*.mdb)};"
DBString = DBString + "Dbq=" & Server.MapPath(".") & "/mdb-database/webstore.mdb;"
DBString = DBString + "Uid=Admin;"
DBString = DBString + "Pwd=;"
DatabaseWebStore.Open DBString
la pagina mi restituisce questo errore
codice:
Microsoft OLE DB Provider for ODBC Drivers error '80004005' 

[Microsoft][ODBC Microsoft Access Driver] Could not find file '(unknown)'. 

/create/gestione_ordini.asp, line 79
Questa è la linea 79- DatabaseWebStore.Open DBString-

Non mi legge il database. Il server è Win 2003.
Grazie per qualsiasi dritta.