Hi Guys,
I have a form with two fields. Name and e-mail address. I was just wondering if someone could show me quickly how to send these two values to an online Access Database called mydb.mdb.
Sorry for asking such a simple Question.
Thanks
JK
Printable View
Hi Guys,
I have a form with two fields. Name and e-mail address. I was just wondering if someone could show me quickly how to send these two values to an online Access Database called mydb.mdb.
Sorry for asking such a simple Question.
Thanks
JK
The form has a page it calls as its POST action. That page (hopefully being an ASP) can get the submitted information via the Request object.
You can put these into the SQL statementCode:Request.Form("userName")
Request.From("userEMail")
I've been using ADODB, which works the same way as in VB.Code:SQL = "UPDATE field IN table VALUES " & Request.From("myValue")