问题出来了。这个字符串中的数字都已经为字符型了,而表中的对应的id列为整形。如果直接用select.....from..where id in('23,56,36')这种形式肯定会报错。在想了众多办法后,觉得在把这个字符串离得数字提出来,并转换成int,然后再拼接成一个查询字符串,这个方法相对简单一点。
string strorderfromId = Request.Form["strorderfromId"]; string[] sArray=strorderfromId.Split(',');string ss = "orderform.dd_date <='" + date + "' AND orderform.id in(";for (int i = 0; i < sArray.Length; i++) { ss = ss + sArray[i] + ","; } ss = ss.Substring(0, ss.Length - 2); ss = ss + ")"; ds = bll.GetList(ss);