asp中,请问以下for循环,提交后,我该用什么函数获取这10个文本值呢?
for j=1 to 10
<tr><td><input type="text" name="txt" size="20"></td>
asp中,请问以下for循环,提交后,我该用什么函数获取这10个文本值呢?
for j=1 to 10
<tr><td><input type="text" name="txt" size="20"></td>
for i=0 to 9
txt=Request.Form("txt")(i) '数组方法获取值。
next
如果不知道总数是几,可以通过Request.Form("txt").Count获取同名input个数。
a = request("txt");
response.write a