How to create a DateTimePicker in Razor MVC4?

I am creating a web application for scheduling tasks using QUARTZ.NET and RAZOR (MVC4). Click here for more details.

Form to add scheduler

Please give me the code or any link to implement DateTimePicker in RAZOR (MVC4).

Thanks for your precious help at Advance.

+4
source share
2 answers

from the model set the field to datetime

public DateTime myDate { get; set; } //View @Html.EditorFor(model => model.myDate) 
0
source

All Articles