Re: quick access question
SQL Server can because SQL Server is a proper server and that server supports HTTP. Access is just a file. You would generally write a web service to sit between your app and your database. The web service then connects to the database a s local data file and the app makes calls to the web service.
Re: quick access question
Yeah through ado and asp. Put your db into a secure area, and using ado connect to it. ASP coding can talk to mdb.
But as mdb is not the most secure in the world, uh, ever depends what you are thinking of holding on it.
Change to MySql database instead?
Edit:
My thinking is that your ASP part can take a processing (CGI?) type post as though from a form on a html page. Then return a html file. Your program can read that file and grab the bits it needs... Just one option tho.
Extra Edit:
Think there was something in ADO about connecting to shared mdb on online server ... never used so not sure, perhaps a search of google?