When recording a TimeStamp into the the table in the DB why does...
DateTime todaysDate = DateTime.Today;
BookingRecord newBooking = new BookingRecord();
//other code for adding record to db
newBooking.TimeStamp = todaysDate;
why does the record in timeStamp record as : 2013-09-04 00:00:00.000 I want the correct time to display as well?
thanks for reply