From: bagha on
how i can insert data into access database with the help of webpage by
javascript.
From: rf on
bagha wrote:
> how i can insert data into access database with the help of webpage by
> javascript.

You don't.


From: Jeremy J Starcher on
On Fri, 16 Apr 2010 04:43:23 -0700, bagha wrote:

> how i can insert data into access database with the help of webpage by
> javascript.

You don't.

You would create a form in HTML. When that form is submitted to a
server, a server-side process may receive data and update a database.

Any attempt to create an SQL statement from within Javascript and send
that to a database is The Wrong Way(tm).