connecting to MS Access database with JavaScript
-
Dear all I want to make a visitors book in my website. But, I am using only HTML , no ASP or such. So my solution is to use a JavaScript. But, I dont know how to connect to the MS Access database using JavaScript. Could anyone help me in that. Is there any better solution, any ready made visitors book in the net.? Thanks a lot
-
Dear all I want to make a visitors book in my website. But, I am using only HTML , no ASP or such. So my solution is to use a JavaScript. But, I dont know how to connect to the MS Access database using JavaScript. Could anyone help me in that. Is there any better solution, any ready made visitors book in the net.? Thanks a lot
There are probably hundreds of freely available solutions, if you care to search the Internet for them; try Google. But if you'd like to take a crack at writing your own, this[^] is a good article on general database access using JavaScript. "...a photo album is like Life, but flat and stuck to pages." - Shog9
-
Dear all I want to make a visitors book in my website. But, I am using only HTML , no ASP or such. So my solution is to use a JavaScript. But, I dont know how to connect to the MS Access database using JavaScript. Could anyone help me in that. Is there any better solution, any ready made visitors book in the net.? Thanks a lot
You can't connect to Access using only Javascript. Access is a file based database, and you can't access the file system of the server using Javascipt. If you used a database server, like MS SQL or MySQL, it would be possible, but not advisable. The connectionsstring would be plainly visible in the source code, and anyone could connect directly to your database and do whatever they wanted to it. Without using server side code there is no good way to use a database. There are plenty of free guestbook solutions that you can use. Most of them come with some kind of advertisment, though. --- b { font-weight: normal; }