<% for i=1 to 6
if rst("select" & i)<>""
then
if rst("type")="单选" then
Lx="radio"
else
Lx="checkbox"
end if
%>
<input
type=<%=Lx%> name=no<%=rst("nquestion")%> value=<%=i%>>
<%=rst("select" & i)%>
<%
if rst("select"& i) = "请你补充" then
%>
<input
type=text name=textno<%=rst("nquestion")%> >
<% end if%>
<% end if
next
上面是第一页面的
第二个页面的:
if recordset2("type")="多选" then
V= Split(Request.Form("no"&recordset2("nquestion")),",")
For i = 0 To Ubound(V)
j=V(i)
num2= Recordset1(V(i))
Recordset1(V(i))=num2+1
Response.Write j
Next
end if
recordset2对应第一个页面的数据集,Recordset1对着另外一个表,就是我要把多选题选项选择结果写入的表格
报 Recordset1(V(i))数据集错.我怀疑V(i)类型有问题.