deletegroups.aspx.cs
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. using COM.OA.BLL;
  12. using COM.OA.Entity;
  13. using System.Collections.Generic;
  14. public partial class deletegroups : System.Web.UI.Page
  15. {
  16.     protected void Page_Load(object sender, EventArgs e)
  17.     {
  18.         //接收要删除的群ID
  19.         string qunid = this.Request["deletequnid"];
  20.         //判断群ID是否为空
  21.         if (qunid != null)
  22.         {
  23.             //格式化成INT类型
  24.             int id = Int32.Parse(qunid);
  25.             string where = "u_g_id='{0}'";
  26.             where = string.Format(where, id);
  27.             //先查出群里所有人员
  28.             IList<users> ulist = usersBLL.Select(where);
  29.             //循环用实体接收,将其群组更改为NULL
  30.             foreach (users uu in ulist)
  31.             {
  32.                 uu.u_g_id = 1;
  33.                 usersBLL.Update(uu);
  34.             }
  35.             //删除群组
  36.             groupsBLL.Delete(id);
  37.             this.Response.Write(string.Format(GetRedirect.WINALERT, "删除成功"));
  38.         }
  39.             //如果群ID为空跳回qunzu.aspx页
  40.         else
  41.         {
  42.             this.Response.Write(string.Format(GetRedirect.REDIRECT, "qunzu.aspx"));
  43.         }
  44.     }
  45. }