Data access pages, in contrast to ASP, are not a "server side" technology.
In ASP, the connection to the data is created by code on the webserver, and data from the database is returned to the ASP server side program and sent out from the server as HTML.
In Data Access Pages, the data connection is between the client machine and the data, not the webserver machine and the data. This connection from the client machine requires that your client machine have a network file path connection to the data that is being accessed from the Data Access Page. That is, you must be able to access the database from your client machine on a network path like:
\\Databaseserver\clientdatabase\database1
This limits the usability of Data Access Pages over the internet, because not many scenarios will have this sort of connection set up.
Also, since the connection is from the client machine to server, and because Access databases, are not client server, you're going to have all the data processing and filtering occuring on the client machine, possibly over dial up connection. This is in many cases going to be incredibly slow. A better solution would be to upside the Access database to SQL Server or MSDE and get a true client/server database setup, where processing of queries will occur on server before data is sent to the requesting client.
I'm not sure about how to set up the network file path connection, although I think it will involve buzzwords like VPN (virtual private networking) or WebDAV.
The better solution may be to just code some ASP pages, which can be used to access and edit data in an Access database without the restriction of having to have a network file path connection. Coding of ASP pages is far more difficult than creating Data Access Pages, though.
Sorry to not be to encouraging, but really it's still no simple matter to put Access databases on the web. Data Access Pages can work well over an intranet, where all machines can easily have network file path connections to the data, but not so simple to do that over the internet. (Although I'm interested in hearing from how people have done so, if anyone at Tek-Tips has.) -- Herb