I have a front end written using classic ASP. One of its elements is a select/option drop-down menu using Onchange. As such the user will scroll through a bunch of database records, no problem at all using ASP. When the Onchange fires it causes a function, a *JavaScript* function, in the header to be executed. I have no problem constructing the appropriate SQL statement in the form of
"select * where ID=value"
How do I open the desired database (XYZ.MDB, for example) and execute the constructed SQL upon it, all in JavaScript?
(Oh, the database resides on a remote server, protected by a userID/password)
"select * where ID=value"
How do I open the desired database (XYZ.MDB, for example) and execute the constructed SQL upon it, all in JavaScript?
(Oh, the database resides on a remote server, protected by a userID/password)