InputDateTime
InputDateTime
Overview
This sample shows the basic usage of the InputDateTime control.
Features
Description
This sample shows the basic usage of the InputDateTime control.
1 2 3 4 5 6 7 8 9 10 11 12 | using Microsoft.AspNetCore.Mvc; namespace MvcExplorer.Controllers { public partial class InputDateTimeController : Controller { public ActionResult Index() { return View(); } } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | @ { var today = DateTime.Now.Date; } < div > < label > @Html .Raw(InputDateTimeRes.Index_Text0)</ label > < c1-input-date-time value = "@today" > </ c1-input-date-time > </ div > @section Description{ @Html .Raw(InputDateTimeRes.Index_Text1) } |