Request.Form collection

Data passed to the server via a POST form.

Usage

value= Request.Form(name)

Details

All POST form values are gathered into this collection.

This collection contains a list of IStringList collection items.

Example 1.7.5.1. Collecting Form Fields

For Each fld in Request.Form
  msg= msg & fld & ": " & Request.Form(fld) & vbCrLf
Next