mycommand1.paremeters["@fblb"]=aaa;
==>
mycommand1.paremeters["@aaa"]=aaa;或者不使用参数了:
string aaa=DropDownList.SelectItem.Text;
string listcmd="select * from fbdj where fblb='"+aaa+"'";
oledbcommand mycommand1=new oledbcommand(listcmd,oledbconnection);
oledbconnection.open();
oledateReader myReader=mycommand.Excutereader();