If you host allows MSAccess Databases, then chances are it allows
ASP.
The following will connect to a MSAccess database in
ASP- Code: Select all
<%
set conn = server.createobject("ADODB.Connection")
conn.open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=c:\full\path\to\file.mdb"
%>
I'm afraid, you'll need a lot more
ASP than that to do anything useful, so pick up a good
ASP book and dive into some examples.
Post back if you get stuck or need recommendations for reading.