//批量删除
        protected void btndelete_Click(object sender, EventArgs e)
        {
            string ids = Request.Form["idchk"];

            if (!string.IsNullOrEmpty(ids))
            {
                surBll.DelByIDS(ids);
                MyBind();
            }
        }