// GET: DateRangePickerFor public ActionResult DateRangeFor() { var model = new DateRangePickerFor(); model.value = "05/28/2017-06/27/2017"; return(View(model)); }
public ActionResult DateRangeFor(DateRangePickerFor model) { return(View(model)); }