I\'m building an application with C# code. How do I get only the date value from a DateTimePicker control?
DateTimePicker
Try this
var store = dtpDateTimePicker.Value.Date;
store can be anything entity object etc.