Hi,
i know this is the vb forum but dont know of any good javascript forum so thought i would rack the brains of the good javascripters.

I am trying to create database access to a MSDatabase the problem is that, it needs to be NON server side, you see it needs to look at the MSdatabase that is on a local server, and write to it

i am thinkin that perhaps using vbscript and javascript

in A EXTERNAL Javascript file

so in a sense,
1) ill open the database connection
2) get the javascript to create a variable for each item i.e text box on a html page or picklist, it will create a variable for each one until there is no more,

i.e

var TB(1) --> (Name) 'first text box in the html page
var TB(2) --> (Surename) ' second
var PL(1) --> (Q1) 'first pick list in the html page

until there is no more left, coz the amount of text box or picklist on a page will change

3) then in the html page, put in something at the (Name) text box that tells what field in the MSDatabase the string has to go into.

i.e Var TB(1) --> (Name,Field1)

4) then gather up the contents of all the variables, i.e whats in the picklist, or text box

ie VarTB(1) --> (Name,Field1,Adam)

5) then send it to the database using a vbscript, or javascript if possible.

Is this theory possible, i know to connect to a MSDatabase using ododb, but not sure on the other stuff, but intend to hit the books and the forum :d