执行页面:abc.asp
<%
if request("submit")="提交" then
if request.form("abc_1")="ON" then abc_1=1 else abc_1=0 end if
if request.form("abc_2")="ON" then abc_2=1 else abc_2=0 end if
if request.form("abc_3")="ON" then abc_3=1 else abc_3=0 end if
conn.execute "insert into abc(abc_1,abc_2,abc_3) values("&abc_1&","&abc_2&","&abc_3&")"
response.redirect Request.ServerVariables("HTTP_REFERER")
end if
%>