SqlConnection conn=new SqlConnection("server=localhost;uid=sa;pwd=;database=Northwind";
string command="select"+showCols+"from [Order Details] where" +tq;
SqlDataAdapter da=new SqlDataAdapter(command,conn);
第二段代码里面有呀,不知这样对么?
还有第一段最后的这段
shc=" "+shc.TrimEnd(',')+" ";
Response.Redirect("Ex05_12.aspx?shc="+shc+"&tq="+tq);
不知这样写对么?这样就能从第一个页面把参数传到第二页么?我的错误提示说where附近有错误,我找不到,是不是传递过程中有什么参数错了?请指点!谢谢!