ASP is very good when it comes dates and times, so heres where to start.
Code:
<%= FormatDateTime(strNow, vbLongDate) %>
Prints: 05 February 2006
Code:
<%= FormatDateTime(strNow, vbGeneralDate) %>
Prints: 5/02/2006
Code:
<%= FormatDateTime(strNow, vbShortDate) %>
Prints: 05/02/2006
Prints: DD/MM/YYYY
Prints: DD/MM/YYYY HH:MM:SS
Pretty simple...different code for different needs.
-- //Oosband