FREE tutorial,solution,RSS Feeds on Operating Systems, Programming, Web Development, Applications, Databases, Networking, Hardware, Security, SEO Free Expertsforge Membership
Become a Moderator
Submit Article to Expertsforge.com Submit Article My Expertsforge
 
RSS Feeds, Help Help RSS Feeds
bannertop
div
 

ASP Tutorial: Format Date using ASP

by: jawahar, 3/29/2008 5:45:35 PM, Views: 447
 
The FormatDate function can convert any date format to MM/DD/YYYY or DD/MM/YYYY or YYYY/MM/DD formats. Just copy and paste the below function into the asp page and call the function like shown below:

Date Format Function:

Function FormatDate(thedate,dformat,dseparator)
Dim myDay
Dim myMonth
Dim myYear
myDay = Day(thedate)
If Len(myDay)=1 Then myDay="0" & myDay
myMonth = Month(thedate)
If Len(myMonth)=1 Then myMonth="0" & myMonth
myYear = Year(thedate)
if dformat="ddmmyyyy" then
   FormatDate = myDay & dseparator & myMonth & dseparator & myYear
elseif dformat="yyyymmdd" then
   FormatDate = myYear & dseparator & myMonth & dseparator & myDay
else
   FormatDate = myMonth & dseparator & myDay & dseparator & myYear
end if
End Function


Usage Examples:

response.write FormatDate(date(),"ddmmyyyy","/")
response.write FormatDate(date(),"mmddyyyy","/")
response.write FormatDate(date(),"yyyymmdd","/")
Next Steps:
Add this Tutorial to:
Rating Booth
Not Yet Rated!
Rate:
Signup / Login To View the Solution or Provide Comments
Post Comment/Solution
Comment:*
     
  Use : [bold] for <b>; [/bold] for </b>; [italic] for <i>; [/italic] for </i>; [code] & [/code] for code
 
Categories
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
Get Rid of Spyware with Anti Spyware Software
Options
»  Submit a Tutorial
» Ask a Question
» Add to KB
» View all your Q's
ASP RSS Feed
Most Popular Tutorial
1.Creating Shopping Ca...
2.Creating Bar Chart u...
3.Converting normal Da...
4.The Global.asa file ...
5.ASP Session Object
6.Sending e-mail with ...
7.Dynamically generati...
8.Create and write con...
9.ASP Cheat Sheet
10.Keyword Highlighting...
Most Popular Solution
1.Web cam feed
Top Rated
1.Converting normal Da...
2.Creating Bar Chart u...
3.Creating Shopping Ca...
4.ASP Session Object
5.The Global.asa file ...
6.Dynamically generati...
7.Taking Database back...
8.Rename a file dynami...
9.Introduction to ASP ...
10.Introduction to ASP ...
Top Rankers
Overall
sep
1. jawahar2850
sep

Yearly - 2008
sep
1. jawahar50
sep
Expertsforge Sponsors
1. Tech News
2. Wii Reviews
bnrtop