I am using a stored procedure to get a DateTable of ID (int) start date and end date (both Date Time). The columns are autogenerated. I want both date time fields to have just the date. I saw in the ItemDataBound to select the columns that have DateTime, but I do not see how to change the values to just date. I am using C#
(if (col,DateType == typeof(DateTime))
{
item(col.?
}
Thanks