HttpRequest.Params 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
QueryString, Form, Cookies및 ServerVariables 항목의 조합 컬렉션을 가져옵니다.
public:
property System::Collections::Specialized::NameValueCollection ^ Params { System::Collections::Specialized::NameValueCollection ^ get(); };
public System.Collections.Specialized.NameValueCollection Params { get; }
member this.Params : System.Collections.Specialized.NameValueCollection
Public ReadOnly Property Params As NameValueCollection
속성 값
NameValueCollection 개체입니다.
예제
다음 코드 예제에서는 페이지에 대 한 속성을 반복 Params 하는 방법 및 각 키/값 쌍을 표시 하는 방법을 보여 있습니다.
<%@ Page Language="C#"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
private void Page_Load(object sender, EventArgs e)
{
// Create a string to contain the paramaters'
// information.
string paramInfo = "";
// Obtain a reference to the Request.Params
// collection.
NameValueCollection pColl = Request.Params;
// Iterate through the collection and add
// each key to the string variable.
for(int i = 0; i <= pColl.Count - 1; i++)
{
paramInfo += "Key: " + pColl.GetKey(i) + "<br />";
// Create a string array that contains
// the values associated with each key.
string[] pValues = pColl.GetValues(i);
// Iterate through the array and add
// each value to the string variable.
for(int j = 0; j <= pValues.Length - 1; j++)
{
paramInfo += "Value:" + pValues[j] + "<br /><br />";
}
}
// Set a Label's Text property to the values
// contained in the string variable.
lblValues.Text = paramInfo;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Label id="lblValues" runat="server" />
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Private Sub Page_Load(sender As Object, e As EventArgs)
' Create a string to contain the paramaters'
' information.
Dim paramInfo As String = ""
Dim i, j As Integer
' Obtain a reference to the Request.Params
' collection.
Dim pColl As NameValueCollection = Request.Params
' Iterate through the collection and add
' each key to the string variable.
For i = 0 To pColl.Count - 1
paramInfo += "Key: " + pColl.GetKey(i) + "<br />"
' Create a string array that contains
' the values associated with each key.
Dim pValues() As String = pColl.GetValues(i)
' Iterate through the array and add
' each value to the string variable.
For j = 0 To pValues.Length - 1
paramInfo += "Value:" + pValues(j) + "<br /><br />"
Next j
Next i
' Set a Label's Text property to the values
' contained in the string variable.
lblValues.Text = paramInfo
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Label id="lblValues" runat="server" />
</form>
</body>
</html>
설명
이름-값 쌍은 다음 순서대로 컬렉션에 추가됩니다.
쿼리 문자열 매개 변수입니다.
양식 필드입니다.
쿠키.
서버 변수.