Filename: format_date.asp Use: Used to format your dates with a 4 digit year
<% Dim CurrMonth, CurrDay, CurrYear, CurrDate
CurrMonth = Month(Date()) CurrDay = Day(Date()) CurrYear = Year(Date()) CurrDate = CurrMonth & "/" & CurrDay & "/" & CurrYear
' Response.Write(CurrDate) %>