<% if request.form("fatto")<>"1" then %>
<form name="form" action="tuapag.asp" method="post">
<table>
<%
'ciclo x la visualizzazione (che hai già fatto,quindi scrivo solo quello che serve per il check)

do while not rs.eof
id=rs(campo identificatore del record)
%>
<input type="checkbox" name="idcanc" value="<%=id%>">
<%
loop
%>
<input type="hidden" name="fatto" value="1">
<input type="submit" name="cancella" value="cancella">
</table>
</form>
<%else
'ottieni una stringa con tutti gli id dei record da cancellare
strId=request.form("idcanc")
vettId=split(strId,",")
strSql="Delete from nometabella where"
s=""
for i=0 to ubound(vettId(i))
if s="" then
s=" campoID="&chr(34)&vettId(i)&chr(34)
else
s=s&" or campoID="&chr(34)&vettId(i)&chr(34)
end if
next
strSql=strSql&s
set rec=conn.execute(strSql)
end if%>
speriamo...