你可以将CheckBox的Value值Bind到记录的唯一标识上(比如说ID字段的值)
然后
使用客户端脚本得到所有选中的ID值,再怎么处理...应该就不用说了吧!
<script language="vbscript">
dim Ids
Ids=""
for each xxobject in NewsListForm.elements
if xxobject.type="checkbox" then
if xxobject.checked then
if Ids="" then Ids=xxobject.value else Ids=Ids+","+xxobject.value
end if
end if
next
===========
Ids里面就是所有选中的ID号码集合了,ID之间使用","隔开