Esempio n. 1
0
        public JsonResult UpdateFile(int fileattachId, string name)
        {
            ContentManagement objcontent = new ContentManagement(SessionCustom, HttpContext);

            return(this.Json(new
            {
                result = objcontent.UpdateFile(fileattachId, name)
            }));
        }