当前位置:Gxlcms > ASP > 取得表单提交的所有数据

取得表单提交的所有数据

时间:2021-07-01 10:21:17 帮助过:77人阅读

代码如下:
<% For Each x In Request.Form %>
Request.Form( <%= x %> ) = <%= Request.Form(x) %> <BR>
<% Next %>



<%
For i = 1 To Request.Form("inputname").Count
  Response.Write Request.Form("inputname")(i) & "<BR>"
Next
%>

人气教程排行