你是想知道如何将选中的多个记录的ID(参数)传递到下页进行处理吧?
下面这个简单例子会不会对你有所帮助:
index.asp
-------------------------------
<form method=post action="12.asp">
<input type=checkbox name=che value="111">选项1<br>
<input type=checkbox name=che value="222">选项2<br>
<input type=checkbox name=che value="333">选项3<br>
<input type=submit value="提交">
</form>
------------------------------
12.asp
-------------------------------------------------------------
<%
dim asdf(3)
Num=request.form("che").count
for i=1 to Num
asdf(i)=request("che")(i)
response.write asdf(i) & "<br>"
next
%>
-----------------------------------------------------------------------------------------