Exemplo n.º 1
0
        public ActionResult DeleteUser(string id)
        {
            bool result = MembershipTools.DeleteUser(id);

            if (result)
            {
                TempData["Result"] = "Kullanıcı silindi";
            }
            else
            {
                TempData["Result"] = "Kullanıcı Silinirken Hata Oluştu!!";
            }
            return(RedirectToAction("UserManager"));
        }