Ejemplo n.º 1
0
        public ActionResult ForbidUser()
        {
            string userName = Request.Form["UserName"].ToString();
            string ForbidTime = Request.Form["ForbidTime"].ToString();
            string Remark = Request.Form["Remark"].ToString();
            bizUserForbid b = new bizUserForbid();
            string result = b.Add(userName, Remark, ForbidTime, UserName);

            return Content(result);
        }