public JsonResult UpdateTestTitle(int testid, string text) { var common = new CommonService(); common.UpdateTestTitle(testid, text); return Json(new { common.success, common.message }); }