如果在你的页面中使用了Checkboxes或则使用了radio buttons,请使用以下代码读数值:
<% For Each Item in Request.Form
If Request.Form(Item).Count Then
For intLoop = 1 to Request.Form(Item).Count
Response.Write "Item = " & Item & " Index = " & intLoop & " "
Next
Else
Response.Write "Item = " & Item & " "
End If
Next
%>