码迷,mamicode.com
首页 > Web开发 > 详细

.net接收post请求并把数据转为字典格式

时间:2018-11-21 01:05:55      阅读:411      评论:0      收藏:0      [点我收藏+]

标签:stp   ring   ret   cti   name   调用   pos   for   .net   

public SortedDictionary<string, string> GetRequestPost()
{
int i = 0;
SortedDictionary<string, string> sArray = new SortedDictionary<string, string>();
NameValueCollection coll = Request.Form;

String[] requestItem = coll.AllKeys;

for (i = 0; i < requestItem.Length; i++)
{
sArray.Add(requestItem[i], Request.Form[requestItem[i]]);
}

coll.Clear();

return sArray;
}

调用:

SortedDictionary<string, string> sPara = GetRequestPost();

.net接收post请求并把数据转为字典格式

标签:stp   ring   ret   cti   name   调用   pos   for   .net   

原文地址:https://www.cnblogs.com/yxyl/p/9992799.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!