Esempio n. 1
0
        // GET: Ajax calling
        public ActionResult DateRangeAjax()
        {
            var model = new DateRangePickerAjax();

            model.startDate = new DateTime(2017, 11, 09);
            model.endDate   = new DateTime(2017, 11, 21);
            return(View(model));
        }
Esempio n. 2
0
 public ActionResult DateRangeAjax(DateRangePickerAjax model)
 {
     return(View(model));
 }