Why do you want to use Javascript? It works in the browser of site visitors, and even if it had direct access to the database (which is not), this would be a terrible security risk, since it had to have a database password, so that every site visitor could get full access to the database.
You need something that runs on the server and accesses the database to deliver different pages to the visitor, depending on the data entered in the HTML form. Typical languages โโused for this are PHP, Perl, Ruby, or ASP.
Also note that MS Access is a very poor choice as a database backend for a web application, since it does not support simultaneous access from different users.
In general, it seems you need more direct help than this site can provide; try to find a web application specialist in your area.
source share