We have a number of forms using a standard DFWP to serve up some simple forms. A few of these forms have datetime fields only showing the date portion. We're experiencing some issues where user A in timezone X enters a date. Then users B in timezone Y comes and looks at the same form and sees a date either one day earlier or later. How can we make sharepoint display the same date for all users, regardless of their timezone?
So far what I've unsuccessfully tried is creating a custom field control inheriting from DateTimeField, with this markup.
<SharePoint:RenderingTemplate id="DateTimeNoTimeZoneField" runat="server">
<Template>
<SharePoint:DateTimeControl TimeZoneID="2" UseTimeZoneAdjustment="false" id="DateTimeField" runat="server"/>
</Template>
But that is having no effect.