【www.gdgbn.com--网页配色】

如果想把上个网页
.....
内的所有内容显示出来,有这样两种方法:
1、以for each .. in ..
<%
for each name in Request.form
    Response.write("
" & name & "=")
    Response.write(Request.form(name))
next
%>
  上面这个程序将显示出上个网面中的所有Form内容。
2、以for i=1 to Request.form.count
<%
for i=1 to request.form.count
    Response.write("
"& Request.form(i)
next
%>

本文来源:http://www.gdgbn.com/wangyezhizuo/8134/