I have a asp:GridView and it has a asp:BoundField that contains DateTime data comming form database. now here i want to show this DateTime to my local GMT DateTime only for view purpose.
I think it should need a client side solution.
source is below,
<asp:BoundField HeaderText="Registration Date" DataField="RegisteredDate" DataFormatString="{0:MM/dd/yyyy hh:mm:ss}" />
here RegisteredDate is the CurrentDateTime from database under DataField
Any help will be appreciated.