This ASP script will auto-update the year displayed, I have coded this for changing copyright but you could use it for practicly anything.
Code:
<%
Function CorrectCopyrightYear (CreationYear)
If Year(Now) > CreationYear Then
CorrectCopyrightYear = CreationYear & "-" & Year(Now)
Else
CorrectCopyrightYear = CreationYear
End If
End Function
%>
Copyright © <%= CorrectCopyrightYear(2006) %>. All Rights Reserved.
Obviously the viewable text is editable, I have also printed the year as 2006, if you are reading this in a later year please change it to your current year.
Hope this helps.
-- //Oosband