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 conn, sql
conn="your connection string to access db"
conn.open()
sql = "insert into mytable(field1,field2)"&_
" values ('"&request.form("textbox1")&"',"&_
" '"&request.form("textbox2")&"') "
conn.execute(sql)
conn.close()
set conn=Nothing
%>