-
I'm trying to create a function that open an Access database and checks to see if a user has registered. My site is not ASP enabled so I cannot do it that way. Is there anyway to open a database in Javascript? And is there a way to move through the records? I don't know anything about Javascript (I know VBScript) so talk to me like I'm a baby. Thanks...
-
No. JavaScript runs client-side unless you have your server set up properly, and as such cannot access a server-side database. Easiest method: get a proper hosting provider that either provides ASP or PHP (then you can use ODBC).