Finding Today date and time and changing the format on location

In VBScript we will learn to get present date, time in different formats. As we run ASP as a server side scripting process using VBScript as language, the time or date we will get is the time or date of the server. NOT THE LOCAL TIME OF THE CUMPUTER we are using to access the page.
Local time can be found out by using client side JavaScript function for date and time. In ASP we will start with printing present ( today ) date. Here is the format.
d_today=Date
Here d_today is the variable and it will store the value of Date. Here is the code to display the present date.
Dim d_today
d_today=Date
Response.Write d_today   
Output is :11-11-2010
To display the time along with the date we have to use Now.
Dim d_today
d_today=Now
Response.Write d_today
Output is :11-11-2010 10:18:01
The code above will print todays date along with time Hour: Minute : Second.
To display only time we can use Time function.
D_today=Time
Output is :10:33:38
We can change the date format displayed based on our requirement by using SetLocal function. Let us try to display date in UK English format. Here is the code.
Dim d_today,var_Locale
var_Locale = SetLocale(2057) ' UK
d_today=Now ' Along with time
Response.Write d_today
There is a list of LCID values for SetLocale for different countries listed at Microsoft site.

ASP Date & Time Functions
Formatting date and time on local settings
Adding Date intervals using DateAdd function
Finding difference between two dates using DateDiff function
Collecting parts of Date by using DatePart function
Collecting Month name by using Month number by MonthName function
Collecting Name of the weekday of any Date by WeekDayName function
Generating Date variables by using Month, Day and Year Value
Function IsDate to check valid date or date variable
Checking user entered date value


Read how DateDiff used in MSSQL query
ASP Home

plus2net.com


Post your comments , suggestion , error , requirements etc here




We use cookies to improve your browsing experience. . Learn more
HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer