string wwww = "";
for (int i = 0; i < Request.Form.Count; i++) { if (Request.Form.Keys[i].ToString().Substring(0, 1) != "_") { wwww += " " + Request.Form.Keys[i].ToString() + " = " + Request.Form[i].ToString(); } }本文共 274 字,大约阅读时间需要 1 分钟。
string wwww = "";
for (int i = 0; i < Request.Form.Count; i++) { if (Request.Form.Keys[i].ToString().Substring(0, 1) != "_") { wwww += " " + Request.Form.Keys[i].ToString() + " = " + Request.Form[i].ToString(); } }转载于:https://www.cnblogs.com/cuihongyu3503319/p/5821154.html