You can pretty much display the Date string in any way you want by using the IFormattable interface. You may e.g do it like this:
Dim dateStr As String = DateTime.Now.ToString("dd/mm/yyyy")
or maybe like this:
Dim dateStr As String = (CType(myDateValueFromDB, DateTime)).ToString("dd/mm/yyyy")To learn more about how to format Date, Currency, Numbers etc.,
start here.
Regards
Andre Colbiornsen
---------------------------------
[MVP Visual Developer Asp.Net]
Sonnenburg Communications
Friisgatan 33,
SE-214 21 Malm?
Sweden
Mob.: +46-(0)708-97 78 79
Mail:
[email protected]--------------------------------