En el request.Form encontrarás aquel checkbox que hay sido clickeado. Yo lo haría asi:
Código:
Do While Not oCesados.Eof
response.write "<input type=""checkbox"" name=""chk_" & oCesados("matricula") & """ value=""" & oCesados("matricula") & """>"
oCesados.movenext
loop
Luego, en la lectura de variables POST:
Código:
For each item in request.Form
if instr(item,"chk_") then
valorencontrado = request.Form(item)
exit for
end if
next
Un saludo