DropDownList问题
如何确定DropDownList里面的所选的内容?然后把所选的内容当作查询条件啊?public bool FillDropDownList(DropDownList ddl,string sTmp)
{
try
{
SqlCommand cmd=new SqlCommand(sTmp,con);
SqlDataReader sdr=cmd.ExecuteReader();
ddl.Items.Clear();
while(sdr.Read())
{
ListItem li = new ListItem(sdr[0].ToString());
ddl.Items.Add(li);
}
sdr.Close();
return true;
}
catch(Exception e)
{
e.Message.ToString();
return false;
}
}
这个是.cs
string str="select DeptName from DeptInfo";
if(odb.FillDropDownList(cx02,str))
{
}
else
{
Response.Write("<script>alert('发生错误!')</script>");
}
这个调用
if(cx01.Text=="" && cx02.SelectedItem.Text!="" && cx03.Text=="" && cx04.Text=="" && cx05.Text=="" && cx06.Text=="" && cx07.Text=="")
{
string str2="select StoDate,StoPaID,StoName,StoVi,StoPaMo,StoPayout,StoInMo,StoEsMo,StoCoMo,StoAdDe,StoPurve,StoStPh from StoPactInfo where StoAdDe like '"+cx02.SelectedItem.Text.ToString().Trim()+"'";
odb.Search(DataGrid1,str2);
这个是做为条件查询。 兄弟们帮我看看我写那里错了,现在的错误是比如DropDownList里在数据库里读出来2个,items分别是111、222,我选择222的时候虽然DropDownList显示的是222,可是点查询的时候还是根据111为条件查询的。