HttpRequest.Params プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > HttpRequest.Params プロパティの意味・解説 

HttpRequest.Params プロパティ

QueryString、Form、ServerVariables、Cookies の各項目が組み合わされコレクション取得します

名前空間: System.Web
アセンブリ: System.Web (system.web.dll 内)
構文構文

Public ReadOnly Property
 Params As NameValueCollection
Dim instance As HttpRequest
Dim value As NameValueCollection

value = instance.Params
public NameValueCollection Params { get; }
public:
property NameValueCollection^ Params {
    NameValueCollection^ get ();
}
/** @property */
public NameValueCollection get_Params ()
public function get Params
 () : NameValueCollection

プロパティ
NameValueCollection オブジェクト

使用例使用例

ページParams プロパティ反復処理し、各キーおよびそれぞれに対応する値をページ上に表示するコード例次に示します

<%@ Page Language="VB" %>
<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>
<head>
</head>
<body>
    <form runat="server">
        <asp:Label id="lblValues" runat="server"
 />
    </form>
</body>
</html>
<%@ Page Language="C#"%>
<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>
<head>
</head>
<body>
    <form runat="server">
        <asp:Label id="lblValues" runat="server" />
    </form>
</body>
</html>
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からHttpRequest.Params プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からHttpRequest.Params プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からHttpRequest.Params プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

HttpRequest.Params プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



HttpRequest.Params プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS