Exemple #1
0
        /// <summary>
        /// 管理员管理操作
        /// </summary>
        protected void Submit1_ServerClick(object sender, EventArgs e)
        {
            string AllDelItems;

            AllDelItems = this.Request.Form["Pid"];
            if (AllDelItems != null)
            {
                string[] arr = AllDelItems.Split(',');
                foreach (var item in arr)
                {
                    int  resultID = 0;
                    bool isSucess = false;
                    if (!string.IsNullOrEmpty(item))
                    {
                        isSucess = int.TryParse(item, out resultID);
                    }
                    if (isSucess)
                    {
                        if (SiteManagement.DeleteUser(resultID))
                        {
                        }
                        else
                        {
                            this.Response.Write(BaseSystem.ShowWindow("出现异常,对不起,删除管理员操作失败!!"));
                            break;
                        }
                    }
                }
                this.Response.Redirect("AdminManage.aspx");
            }
            else
            {
                this.Response.Write(BaseSystem.ShowWindow("信息提示:请先选择要删除的医院!!"));
            }
        }
Exemple #2
0
        /// <summary>
        /// 页面加载
        /// </summary>
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                userAdmin = (SiteUser)Session["admin"];

                if (this.Request.QueryString["action"] != null)
                {
                    string DelItem;
                    int    resultID = 0;
                    DelItem = this.Request.QueryString["ID"];
                    if (!string.IsNullOrEmpty(DelItem))
                    {
                        bool isSucess = int.TryParse(DelItem, out resultID);
                    }
                    if (SiteManagement.DeleteUser(resultID))
                    {
                        this.Response.Redirect("UserManage.aspx");
                    }
                    else
                    {
                        this.Response.Write(BaseSystem.ShowWindow("出现异常,对不起,删除用户操作失败!!"));
                    }
                }
                else
                {
                    AdminPagePageID = Convert.ToInt32(Request.QueryString["PageID"]);
                    if (Request.QueryString["PageID"] == null)
                    {
                        AdminPagePageID = 1;
                        PageStartIndex  = 0;
                    }
                    PageStartIndex = Convert.ToInt32(AdminPagePageID - 1);
                    MaxAdminPages  = this.GetMaxUserPages();
                    userList       = SiteManagement.GetAllUserByHospitalID(userAdmin.Hospital.ID);
                    BaseSystem.BindProduceData(this.DataListUser, userList, PageStartIndex, PageStartIndex, PageSize);
                    ShowBottomUrl();
                }
            }
        }