Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Community Forums
 Code Support: ASP (Non-Forum Related)
 Display Date Question? Plz help...
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

chinh10
Junior Member

125 Posts

Posted - 20 February 2002 :  13:02:37  Show Profile
I am using this code to display the date:
For example: 02 January 2002: I want to display it like this: 01/02/2002
But I don't know why it display Day before Month (02/01/2002)
I don't know why???
Please help:

<%@LANGUAGE="VBSCRIPT"%> <%
function DoDateTime(str, nNamedFormat, nLCID)
dim strRet
dim nOldLCID

strRet = str
If (nLCID > -1) Then
oldLCID = Session.LCID
End If

On Error Resume Next

If (nLCID > -1) Then
Session.LCID = nLCID
End If

If ((nLCID < 0) Or (Session.LCID = nLCID)) Then
strRet = FormatDateTime(str, nNamedFormat)
End If

If (nLCID > -1) Then
Session.LCID = oldLCID
End If

DoDateTime = strRet
End Function

str = "2/1/02"
%>

<html>
<body bgcolor="#FFFFFF" text="#000000">
<%= "Old Format = " & str & "<Br>" %>
<%= "New Format = " & DoDateTime( str, 2, 2057 )%>
</body>
</html>

Deleted
deleted

4116 Posts

Posted - 20 February 2002 :  16:30:49  Show Profile
Comment out "On Error Resume Next" line and see if an error occurs or not (your server may have problems with session or LCID support)


Think PinkPost v40b03 Patches
Go to Top of Page

Deleted
deleted

4116 Posts

Posted - 20 February 2002 :  16:43:46  Show Profile
Opps. LCID=2057 is for English UK and it diplays dd/mm/yyyy format. Try to call the function with 1033 (Eng-US).

Think PinkPost v40b03 Patches
Go to Top of Page

chinh10
Junior Member

125 Posts

Posted - 20 February 2002 :  16:46:09  Show Profile
Hi bozden,

It's OK now

<%= "ok = " & DoDateTime( str, 2, 9225 )%>
When I use English(Caribbean)

Thank you very much

Edited by - chinh10 on 20 February 2002 17:09:23
Go to Top of Page

Deleted
deleted

4116 Posts

Posted - 20 February 2002 :  17:56:45  Show Profile
You're welcome

Think PinkPost v40b03 Patches
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 1.21 seconds. Powered By: Snitz Forums 2000 Version 3.4.07