System.Collections.Specialized.NameValueCollection coll = context.Request.Form;
String[] requestItem = coll.AllKeys;
Dictionary<string, string> sArray = new Dictionary<string, string>();
int i = 0;
for (i = 0; i < requestItem.Length; i++)
{
sArray.Add(requestItem[i], context.Request.Form[requestItem[i]]);
}
将post过来的参数放入到sArray 字典中,通过sArray["key"]的方式获取具体的参数值。
网友评论