Exemple #1
0
        public ActionResult GetColorInfo()
        {
            var machineList = dalSysColor.GetAllActiveColor();

            return(Json(machineList, JsonRequestBehavior.AllowGet));
        }
 public ActionResult Article()
 {
     ViewBag.formTiltle = "Article Form";
     ViewBag.ddlColor   = objDalSysColor.GetAllActiveColor();
     return(View());
 }
        public ActionResult GetColorList()
        {
            var objColor = new DalSysColor();

            return(Json(objColor.GetAllActiveColor(), JsonRequestBehavior.AllowGet));
        }