form页面中:
<input type="checkbox" name="checkbox1" id="checkbox1*" value="*">
form提交的页面中:
m=request("checkbox1").count
m=cint(m)
for i=1 to m
if request("checkbox1")(i)<>"" then
str=request("checkbox1")(i)'其中str是form页面中传来的值,即要删除记录的关键值(比如id)
…………'删除记录
end if
next