主题:关于数据匹配的问题
<table border="0">
<form method="POST" action="cc3.asp" name="testform">
<%for i=1 to 4 %>
<tr><td><input type="checkbox" name="testpoint" value="<%i%>">第1个<input type="text" name="bizhong<%i%>">%</td></tr>
<%next%>
<tr><td colspan="2"><button type="submit" name="submit2">查询</button></td></tr>
</form>
</table>
以上代码,执行后就说i不匹配,请各位高手指点,哪儿出现了差错?
本断代码有两处用到了i变量。
<form method="POST" action="cc3.asp" name="testform">
<%for i=1 to 4 %>
<tr><td><input type="checkbox" name="testpoint" value="<%i%>">第1个<input type="text" name="bizhong<%i%>">%</td></tr>
<%next%>
<tr><td colspan="2"><button type="submit" name="submit2">查询</button></td></tr>
</form>
</table>
以上代码,执行后就说i不匹配,请各位高手指点,哪儿出现了差错?
本断代码有两处用到了i变量。