Come faccio a fare una cosa simile:
<script>
function valid()
{
var the_box = document.form.nometuacheckbox;
if(the_box.checked==false){
alert("messaggio di avviso")
return false
}
}
</script>
se ho cosi' la checkbox?
<input type="checkbox" name="Del<%=i%>" value="<%=rs("NumCommessa")%>" unchecked>

ps: eseguo un select * e poi faccio
<%
Dim i
i=0
Do While Not rs.EOF
i=i+1
%>