int Scid;//声明一个整型变量
int.TryParse(Request.QueryString["Scid"],out Scid);//判断通过get接收的值是否是整数,如果是就赋值给Scid。
string condition="1=1";//声明一个字符串类型的变量并初始化为“1=1”
if(Scid>0)//如果Scid>0
{
condition +="and Scid=@Scid"; //condition的值为:“1=1 and Scid=@Scid”
int Scid;
// 判断Request.QueryString["Scid"]是否为int,如果是则赋值给Scid
int.TryParse(Request.QueryString["Scid"],out Scid);
string condition="1=1";
// 如果Scid大于0则拼接查询字符串。
if(Scid>0)
{
condition +="and Scid=@Scid";