HttpRequest.Form Property
.NET Framework (current version)
Gets a collection of form variables.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Collections.Specialized.NameValueCollectionA NameValueCollection representing a collection of form variables.
The Form property is populated when the HTTP request Content-Type value is either "application/x-www-form-urlencoded" or "multipart/form-data".
The following example shows how to read the values in the form collection posted from a browser. Each name/value pair in the collection represents a control in the form and its value.
.NET Framework
Available since 1.1
Available since 1.1
Show: