- If date is required in format 23-Apr-2008 then, use
day(mydate) & "-" & left(monthname(month(mydate)),3) & "-" & year(mydate)
- If date is required in format 23/4/2008 then, use
day(now) & "/" & month(now) & "/" & year(now)
Solution of Programming Problems
day(mydate) & "-" & left(monthname(month(mydate)),3) & "-" & year(mydate)
day(now) & "/" & month(now) & "/" & year(now)
Labels: ASP
0 comments:
Post a Comment