Display of date and time in local format in ASP using FormatDateTime
We can display Formatted date and time by using FormatDateTime function of VBScript within ASP. This function can take only date , only time or both date and time and display in specified format. Here is the format the function FormatDateTime uses.
FormatDateTime(my_date,Format)
Here my_date is the date variable and Format takes the value of 0 to 4 and format the display based on this. The table at the end of this page displays all possible formats with different value of Format.
Here is the code to use FromatDateTime function.
Dim my_date,var_Locale
var_Locale = SetLocale(1033)
my_date=Now
Response.Write FormatDateTime(my_date,0)
Here the Format value is specified as 0 so the output of this is here .