|
发表于 2020-12-15 07:15:02
|
显示全部楼层
if (this.Drpcondition.SelectedIndex > 0)
{
string cdition = this.Drpcondition.SelectedValue;
string Condition="";
switch (cdition)
{
case "发表用户":
Condition = "select * from MQ_ALlPhoto where UserName like '%" + this.txtcondotion.Text.Trim() + "%'";
break;
case "标题":
Condition = "select * from MQ_ALlPhoto where Topic like '%" + this.txtcondotion.Text.Trim() + "%'";
break;
}
} |
|