Form.Post中的NameValueCollection显示FIELDS和VALUES

时间:2012-04-06 20:30:06

标签: c# asp.net collections

我需要从POST中获取所有的FIELD和VALUES。

我有以下内容,只返回FIELDs但没有返回值。

NameValueCollection authForm = Request.Form;
String[] a = authForm.AllKeys;

for (i = 0; i < a.Length; i++)
{
    frm += ("Form: " + a[i] + " : " + "<br>");
}

Response.Write(frm);

我可以在frm字符串中添加什么来显示VALUES?

更新

我使用了

的初始代码
    NameValueCollection authForm = Request.Form;
    foreach (string key in authForm.AllKeys)
    {
        frm += ("Key: " + key + ", Value: " + authForm[key] + "<br/>");
    }

效果很好。我将尝试下面的新变体。

1 个答案:

答案 0 :(得分:6)

NameValueCollection authForm = Request.Form;
StringBuilder sb = new StringBuilder();
foreach (string key in authForm.AllKeys)
{
    sb.AppendFormat(
        "Key: {0}, Value: {1}<br/>", 
        HttpUtility.HtmlEncode(key), 
        HttpUtility.HtmlEncode(authForm[key])
    );
}
Response.Write(sb.ToString());