摘要:
判断一个字符串中是否包含字符串数组里的字符,恶意字符限制提交,一般人,包括最初的我,会这样写public bool ValidateStr(string[] parms) { bool result = false; //要验证的字符列表 string[] validateParms = { "'", "\"", "%" }; for (int i = 0; i p.IndexOf(parms[i]) > 0).Count() > 0) { result = true; ... 阅读全文