string strid = Request.QueryString["id"];
if (!string.IsNullOrEmpty(strid ))
{
}
如果 strid不为空才执行sql ------解决方案-------------------- id一般是Int吧
"select * form 表 where id="+strid+";
后边不加单引号. ------解决方案-------------------- "select * form 表 where id="+strid;
对不起,写错了。
也可能QueryString["id"]没取到值。