共用方式為


HttpRequest.Form 屬性

定義

會得到一組形式變數。

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

屬性值

A NameValueCollection 代表一組形式變數。

範例

以下範例展示了如何從瀏覽器讀取表單集合中的值。 集合中的每個名稱/值對代表表單中的一個控制點及其值。

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
   

備註

Form當 HTTP 請求Content-Type值為「application/x-www-form-urlencoded」或「multipart/form-data」時,該屬性會被填入。

適用於

另請參閱