取得表单提交的所有数据

网络编程 发布日期:2024/10/9 浏览次数:1

正在浏览:取得表单提交的所有数据
复制代码 代码如下:
<% 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
%>