Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HttpRequest::Form Property

 

Gets a collection of form variables.

Namespace:   System.Web
Assembly:  System.Web (in System.Web.dll)

public:
property NameValueCollection^ Form {
	NameValueCollection^ get();
}

Property Value

Type: System.Collections.Specialized::NameValueCollection^

A 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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft