Connecting Tech Pros Worldwide Forums | Help | Site Map

Convert Date

Member
 
Join Date: Oct 2008
Posts: 58
#1: Oct 7 '08
How i can convert Date dd/mm/yy to mm/dd/yy?

Pls any one help me immediately.... is very very urgent. Because i am new for asp and vbscript and javascript.

DrBunchman's Avatar
Moderator
 
Join Date: Jan 2008
Location: Winchester, UK
Posts: 930
#2: Oct 7 '08

re: Convert Date


Hi shivasusan,

There are a few things you can do to fix this. You can use any of the vbscript date formatting functions to get the desired effect. There is a list of them here.

Alternatively you can set the locale property of your session to your local region using the following code at the top of your page:

Expand|Select|Wrap|Line Numbers
  1. Session.LCID = 1033
This would set it to the American date format. A full list of the LCID values can be found here.

Hope this helps,

Dr B
Reply