Ejemplo n.º 1
0
 public JsonResult SearchTagsOnTest(int testid, string term, int maxrows)
 {
     var common = new CommonService();
     common.SearchTagsOnTest(testid, term, maxrows);
     return Json(new { common.success, common.message, common.resultlist });
 }