关于ASP.NET中C#代码 点击按钮根据文本框里的查询条件在列表框显示相应数据

2024-11-15 17:01:26
推荐回答(2个)
回答(1):

比如你有一个textbox文本框 name为textbox1,一个button按钮name为button1,双击这个按钮,在这个按钮的click事件中获取文本框的值
string txtValue=textbox1.Text.Trim();
然后修改你的sql语句
原来的语句:"select * from 产品 where 产品名称='绿茶'“;

修改后的语句:"select * from 产品 where 产品名称=‘“+txtValue+”’";

回答(2):

改sql句,
if(参数=="绿茶")
{
string sql = "select * from table where 字段= ' "+参数+' ";
}else if(参数= "红茶")
{
string sql = "select * from table where 字段= ' "+参数+' ";
}