Example #1
0
 public JsonResult UpdateQuestionTitle(int questionid, string newtext)
 {
     var common = new CommonService();
     common.UpdateQuestionTitle(questionid, newtext);
     return Json(new { common.success, common.message });
 }