string strsql = "select * from tb_users where fd_studyId ='" + strStudyId +"'" +" and fd_activatedyn='1'";
int instu = Convert.ToInt32(strsql);
if (instu > 0)
{
      Response.Write("<script>alert('您已经激活!');</script>");
}怎么跳不进去啊 执行到int instu = Convert.ToInt32(strsql);就不执行if了