示例#1
0
        public ContentResult UserRole_API()
        {
            string action = GetParam("action");
            string ids    = GetParam("ids");

            switch (action)
            {
            case "del":
                urBll.DelByIDS(ids);
                break;
            }
            return(Content(Success.ToString()));
        }