1

我正在使用经典的 ASP 来处理表单。

我熟悉 PHP 如何处理表单,例如:

function respondWithVars(){
  foreach($_POST as $stuff)
  echo($stuff);
}

但是如何使用 ASP 遍历并返回表单中的值?

我试过了

Sub respondWithVars
    for each item in request.form()
        Response.Write("<p>"&item&"</p>")
    next
End Sub

但它返回的是键,而不是值。

4

1 回答 1

3

试试这个:

Sub respondWithVars
    for each item in request.form()
        Response.Write("<p>" & item & ": " & request.form(item) & "</p>")
    next
End Sub

这将遍历发布的参数并写出参数名称和值。

于 2013-06-09T00:20:53.743 回答