码迷,mamicode.com
首页 > 其他好文 > 详细

页面中查询条件可输入多个的处理办法

时间:2021-04-06 15:11:31      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:code   页面   spl   lse   pre   ring   tostring   where   class   

当文本框可以输入多个值时,后台需要根据多个值进行查询可以使用in语句,前台进行拼接格式

  #region 按周交货标志

                string delivy_week_code = this.delivy_week.EditValue.ToString().Trim();
                if (delivy_week_code.Length > 0)
                {
                    string[] str = delivy_week_code.Split(,);
                    for (int i = 0; i < str.Length; i++)
                    {
                        if (i < str.Length - 1)
                        {
                            str_value += "" + str[i].Trim() + "‘,";
                        }
                        else
                        {
                            str_value += "" + str[i].Trim() + "";
                        }
                    }
                }

                #endregion
//按周交货标志
        if (delivy_week.GetLength() > 0)
        {
            sqlwhere += " AND A.DELIVY_WEEK_FLAG IN(" + delivy_week + " )";
        }

 

页面中查询条件可输入多个的处理办法

标签:code   页面   spl   lse   pre   ring   tostring   where   class   

原文地址:https://www.cnblogs.com/yjy1412/p/14617783.html

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