示例#1
0
 //删除
 public ActionResult Delete(int id, string fid)
 {
     if (icsb.SelectByFid(fid) > 0)
     {
         return(Content("<script>alert('不可删除!该I级机构名称下存在II级机构');location.href='/config_file_first_kind/config_file_first_kindShow';</script>"));
     }
     else
     {
         config_file_first_kindModel ctm = new config_file_first_kindModel()
         {
             Id = Convert.ToInt16(id)
         };
         if (ickb.config_file_first_kindDelete(ctm) > 0)
         {
             return(Content("<script>alert('删除成功!');location.href='/config_file_first_kind/config_file_first_kindShow';</script>"));
         }
         else
         {
             return(Content("<script>alert('删除失败!');location.href='/config_file_first_kind/config_file_first_kindShow';</script>"));
         }
     }
 }