Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim sql, con
set con = server.createobject("ADODB.connection")
con.open "put the connection string to your database here"
sql = " INSERT INTO tablename(field1, field2, field3)" &_
" VALUES ('"&request.form("val1")&"'," &_
" '"&request.form("val2")&"'," &_
" '"&request.form("val3")&"') "
con.execute(sql)