C# 有关模糊查询代码

在VS中制作网站,用c#要在开头加个模糊查询块,那个的代码是怎么写的... 在VS中制作网站,用c# 要在开头加个模糊查询块,那个的代码是怎么写的 展开
 我来答
百度网友b357d1f
2010-01-25 · TA获得超过1642个赞
知道小有建树答主
回答量:1022
采纳率:0%
帮助的人:770万
展开全部
private void btntianjia_Click(object sender, EventArgs e)
{
//拼接查询条件
string conditon = string.Empty;
if (rdoDuan.Checked)//选择时间段
{
conditon += string.Format(" consumedate>='{0}' and consumedate<='{1}'", cboYear.Text + "-" + cboMonth.Text + "-" + cboDay.Text, cboEndYear.Text + "-" + cboEndMonth.Text + "-" + cboEndDay.Text);
}
else//时间点
{
conditon += string.Format(" consumedate='{0} ' ", cboYear.Text + "-" + cboMonth.Text + "-" + cboDay.Text);
}
//按类别查询
if (conditon != string.Empty)
{
string category = string.Empty;
if (cbGongZi.Checked)
{
category += string.Format("'{0}',", cbGongZi.Text);
}
if (cbYuLe.Checked)
{
category += string.Format("'{0}',", cbYuLe.Text);
}
if (cbYinShi.Checked)
{
category += string.Format("'{0}',", cbYinShi.Text);
}

if (cbOtherRu.Checked)
{
category += string.Format("'{0}',", cbOtherRu.Text);
}
if (cbFuZhuang.Checked)
{
category += string.Format("'{0}',", cbFuZhuang.Text);
}

//去掉最后一个多余的逗号
string categoryFina = category.Substring(0, category.Length - 1);
conditon += string.Format(" and type in({0})", categoryFina);
//金额范围

double minMoney = 0, maxMoney = 0;
if (txtMin.Text.Trim() == string.Empty)
{
txtMin.Text = "0";
}
if (txtMax.Text.Trim() == string.Empty)
{
txtMax.Text = "0";
}
try
{
minMoney = Convert.ToDouble(txtMin.Text.Trim());
maxMoney = Convert.ToDouble(txtMin.Text.Trim());
}
catch (FormatException ex)
{
MessageBox.Show("请输入有效的金额");
return;
}
if (minMoney > 0)
{
conditon += string.Format(" and consumemoney >={0} ", txtMin.Text);
}
if (maxMoney > 0)
{
conditon += string.Format(" and consumemoney <={0} ", txtMax.Text);
}
//备注的模糊搜索
if (txtDescription.Text.Trim() != string.Empty)
{
conditon += string.Format(" and Descrition like '%{0}%'", txtDescription.Text.Trim());
}
}
七色的鱼儿
2010-01-25 · TA获得超过876个赞
知道小有建树答主
回答量:361
采纳率:93%
帮助的人:202万
展开全部
自己灵活变通下 给你个例子

string strSql = "select * from tb_News where style='" + this.ddlStyle.SelectedValue.ToString() + "'";
strSql += " and (( content like '%" + this.txtKey.Text + "%')";
strSql += " or (Title like '%" + this.txtKey.Text + "%'))";

说明:数据表:tb_News 字段:style(样式) content(内容) Title(标题)
ddlStyle.SelectedValue 下拉菜单选择样式
txtKey.Text 文本框的值
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
计名pS
2010-01-25 · TA获得超过3649个赞
知道大有可为答主
回答量:4189
采纳率:0%
帮助的人:2193万
展开全部
using System.Text.RegularExpressions;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
荣丰李老师
2010-01-25 · TA获得超过185个赞
知道小有建树答主
回答量:274
采纳率:0%
帮助的人:82.7万
展开全部
有很多条件吗?
那你就拼sql语句吧!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式