HttpRequest.Form Eigenschaft

Definition

Ruft eine Auflistung von Formularvariablen ab.

public:
 property System::Collections::Specialized::NameValueCollection ^ Form { System::Collections::Specialized::NameValueCollection ^ get(); };
public System.Collections.Specialized.NameValueCollection Form { get; }
member this.Form : System.Collections.Specialized.NameValueCollection
Public ReadOnly Property Form As NameValueCollection

Eigenschaftswert

NameValueCollection

Eine NameValueCollection, die eine Auflistung von Formularvariablen darstellt.

Beispiele

Im folgenden Beispiel wird gezeigt, wie die Werte in der Formularsammlung aus einem Browser gelesen werden. Jedes Name/Wert-Paar in der Auflistung stellt ein Steuerelement im Formular und dessen Wert dar.

int loop1;
NameValueCollection coll;

//Load Form variables into NameValueCollection variable.
coll=Request.Form;
// Get names of all forms into a string array.
String[] arr1 = coll.AllKeys;
for (loop1 = 0; loop1 < arr1.Length; loop1++)
{
   Response.Write("Form: " + arr1[loop1] + "<br>");
}

Dim loop1 As Integer
Dim arr1() As String
Dim coll As NameValueCollection
 
' Load Form variables into NameValueCollection variable.
coll=Request.Form

' Get names of all forms into a string array.
arr1 = coll.AllKeys
For loop1 = 0 To arr1.GetUpperBound(0)
   Response.Write("Form: " & arr1(loop1) & "<br>")
Next loop1
   

Hinweise

Die Form Eigenschaft wird ausgefüllt, wenn der HTTP-Anforderungswert Content-Type entweder "application/x-www-form-urlencoded" oder "multipart/form-data" ist.

Gilt für

Siehe auch