Hi Stefanoz,
First off all have you created a odbc connection in windows. And are you using Odbc connection code in your asp code.
The reason I ask this is there is a big difference between mysql wich is most common and a acces database wich you are using.
This is what your asp code should look like
Code:
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"
%>
Or like this with a odbc connection:
Code:
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Open "northwind"
%>
hope this helps
__________________________________________________ ________
This is my junk I'm gona eat it