but it proved to be an incorrect approach. Rather than spin the proverbial wheels, I thought I'd ask the experts. I suspect the answer is simple, but unfortunately so am I!
With what you tried, you're trying to map the physical path to "/server.com/path/dbase/database.mdb;Jet.OLEDB: Database Password=password" - which isn't a valid directory.
You can use: strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("/server.com/path/dbase/database.mdb") & ";Jet.OLEDB: Database Password=password"