Example #1
0
        protected void btnDelSelected_Click(object sender, EventArgs e)
        {
            string selectItems = getSelectedItemsId();

            if (selectItems != "")
            {
                if (this.IsAllowDelete(selectItems))
                {
                    blladmin.DeleteList(selectItems);
                    this.BindData();
                }
                else
                {
                    Page.ClientScript.RegisterStartupScript(Page.GetType(), "alertNotDelete", "alert('不允许删除改用户,必须存在一个超级管理员!')", true);
                }
            }
        }
Example #2
0
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            string json   = "";
            string action = context.Request.Form["Action"];

            if (action == "Show")//显示
            {
                if (context.Session["ID"] == null)
                {
                    json = "{}";//未登录
                }
                else
                {
                    BLL.Admin bll = new BLL.Admin();
                    DataSet   ds  = bll.GetList("");
                    ds.Tables[0].TableName = "AdminTable";
                    //返回列表
                    json = WEB.DataConvertJson.DataTable2Json(ds.Tables[0]);
                }
            }
            else if (action == "Del")                                //删除操作
            {
                string    DelNumS = context.Request.Form["DelNumS"]; //获取批量删除的编号
                BLL.Admin bll     = new BLL.Admin();
                if (bll.DeleteList(DelNumS))
                {
                    json = "{'info':'删除成功'}";
                }
                else
                {
                    json = "{'info':'删除失败'}";
                }
            }
            context.Response.Write(json);
        }