README.md
December 4, 2022 ยท View on GitHub
Description
VERY simple code to display a nicely formatted date on your web page. (IE - Wednesday, June 14, 2000)
More Info
| Submitted On | |
| By | Mike Sipes |
| Level | Beginner |
| User Rating | 3.5 (21 globes from 6 users) |
| Compatibility | ASP (Active Server Pages) |
| Category | Miscellaneous |
| World | ASP / VbScript |
| Archive File |
Source Code
<%
DateToday = WeekdayName(Weekday(Weekday(Date()))) & ", " & MonthName(Month(date())) & " " & Day(Date()) & ", " & Year(Date())
%>
'Place this where you want the date to display:
<%=DateToday%>