public JsonResult Get(string id) { try { Publisher data = dao.Get(id); return(Json(new { data = data }, JsonRequestBehavior.AllowGet)); } catch (Exception) { return(Json(new { data = DBNull.Value.ToString() }, JsonRequestBehavior.AllowGet)); } }