Is there a better .net way to check if a DateTime has occured \'today\' then the code below?
if ( newsStory.WhenAdded.Day == DateTime.Now.Day &&
Try
if (newsStory.Date == DateTime.Now.Date) { /* Story happened today */ } else { /* Story didn't happen today */ }