Thanks a million for all the help so far !
What I'm trying to accomplish here is to show a link if the Todays date is equal to or not more that 10 days for the date the record was added. I have tried tons of combinations of +10, -10 etc and get a script error.
<%
If FormatDateTime(Date(), VbLongDate) =< FormatDateTime(DateAdded, VbLongDate) Then
response.write("Page Background")
Else
response.write "
Page Background"
End if
%>
Thanks for all assistance
Ernest L. Kendricks