多个文本框的接收数据方法
Input.htm
<html>
<head>
<title>提交表单页面</title>
</head>
<body>
<form method="post" action="Request.asp">
<input type="text" name="TxtInp" >文本框0<br>
<input type="text" name="TxtInp" >文本框1<br>
<input type="text" name="TxtInp" >文本框2<br>
<input type="text" name="TxtInp" >文本框3<br>
<input type="text" name="TxtInp" >文本框4<br>
<input type="text" name="TxtInp" >文本框5<br>
<input type="text" name="TxtInp" >文本框6<br>
<input type="text" name="TxtInp" >文本框7<br>
<input type="text" name="TxtInp" >文本框8<br>
<input type="text" name="TxtInp" >文本框9<br>
<input type="submit" value="提交文本框">
</form>
</body>
</html>
Request.asp
<html>
<head>
<title>数据接收页面</title>
</head>
<body>
<%
Dim tAry(),i,Total
Total=Request.Form("TxtInp").Count
ReDim tAry(Total)
For i=0 To Total
tAry(i)=Request.Form("TxtInp")(i)
Response.Write "文本框"&CStr(i)&"的值为"&tAry(i)&"<BR>"
Next
%>
</body>
</html>