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.
<html>
<head>
</head>
<body>
<form method="post" action="<%=Request.servervariables("script_name")%>">
<!-- form inputs -->
<input type="image" name="update" src="update.gif" alt-"Update">
' form image has x and y attributes so when
' requesting value see if x value was submitted
</form>
<%
If Request.Form("update.x") <> "" Then
strSQL="UPDATE addressbook INNER JOIN newaddress ON addressbook.PersonID = newaddress.PersonID SET newaddress.add1 = addressbook.add1"
conn.execute(sql)
Response.Write "Address Updated!"
End If
%>
</body>
</html>