codice:
x = 0
for each item in request.form
  if left(item,4) = "nome" then
    if len(request.form(item)) > 0 then
      x = x + 1
      response.write "nome" & x & "=""" & request.form(item) & """
"
    end if
  response.write "totalenomi=" & x
  end if
next