MOSS 2007: SPListItem.GetFormattedValue for DateTime fields has a bug?
SPListItem.GetFormattedValue seems to have a strange behavior for DateTime fields. It retrieves the DateTime value through SPListItem's indexer which according to this MSDN article returns local time. Here's a snippet from Reflector public string GetFormattedValue(string fieldName) { SPField field = this.Fields.GetField(fieldName); ...