Ejemplo n.º 1
0
        /// <summary>
        /// 清除用户登陆信息
        /// </summary>
        protected void Clear_Click(object sender, EventArgs e)
        {
            DeleteBLO deleteBLO = new DeleteBLO();

            if (deleteBLO.ClearLogs())
            {
                this.DataListUserLog.DataSource = null;
                DataListUserLog.DataBind();
            }
            else
            {
                this.Response.Write(BaseSystem.ShowWindow("出现异常,对不起,清空日志操作失败!!"));
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// 页面加载
 /// </summary>
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         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);
             }
             DeleteBLO deleteBLO = new DeleteBLO();
             if (deleteBLO.DeleteHospitalByHospitalID(resultID))
             {
                 this.Response.Redirect("AdminManageHospital.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  = GetMaxHospitalPages();
             SiteUser user = (SiteUser)Session["sa"];
             if (user != null)
             {
                 List <Hospital> hosList = SiteManagement.GetHospitals(user.ID);
                 BaseSystem.BindProduceData <Hospital>(this.DataListHospital, hosList, PageStartIndex, PageStartIndex, PageSize);
                 ShowBottomUrl();
             }
             ShowBottomUrl();
         }
     }
 }
Ejemplo n.º 3
0
        /// <summary>
        /// 删除管理员
        /// </summary>
        protected void Submit1_ServerClick(object sender, EventArgs e)
        {
            DeleteBLO deleteBLO = new DeleteBLO();
            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 (deleteBLO.DeleteHospitalByHospitalID(resultID))
                        {
                        }
                        else
                        {
                            this.Response.Write(BaseSystem.ShowWindow("出现异常,对不起,删除管理员操作失败!!"));
                            break;
                        }
                    }
                }
                this.Response.Redirect("AdminManageHospital.aspx");
            }
            else
            {
                this.Response.Write(BaseSystem.ShowWindow("信息提示:请先选择要删除的医院!!"));
            }
        }