每个复选框都有一个不同的name 根据这个name来判断提交的数据是什么
比如
<form action="abc.asp" method="post">
第一个复选题:<input type="checkbox" name="abc_1" value="ON" /><br />
第二个复选题:<input type="checkbox" name="abc_2" value="ON" /><br />
第三个复选题:<input type="checkbox" name="abc_3" value="ON" /><br />
<input type="submit" name="submit" value="提交"
/>
</form>
执行页面: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
%>