Exemple #1
0
        public ActionResult EditItem(int pk, string name, [ModelBinder(typeof(AllowHtmlBinder))] string value)
        {
            bool res;
            var  msg = "";

            res = mng.EditMail(pk, name, value, out msg);

            return(Json(new
            {
                result = res,
                msg
            }));
        }