here is a Date column in GridView in my .net application.
<asp:BoundField DataField="TestDate" HeaderText="Date" DataFormatString="{0:dd/MM/yyyy}">
</asp:BoundField>
date displaying properly on my pc in given format :
23/03/2011
but on test server it displaying in the following format:
3/23/2011 5:19:18 PM
which is incorrect.
Does anyone know how to resolve it?