Hi Mike,
I must admit to being just a little bit confused about what you want to do with this. Maybe a URL would help. Anyway, here are a couple of points that might help.
You have Day(), Year() and Month() functions available in ASP, like for instance . . .
Response.Write Month(Date()) & " " & Day(Date()) & " " & Year(Date())If I want to have an action on an asp page that only happens the first time a page is called, and not when it calls itself again, I normally use a "hidden" variable in the page form. For instance . . .
<input type="hidden" name="calleditself" value="1">
So now I can check in the page . . .
<%
if Request.Form("calleditself") = "1" then
.....do something
else
.....do something else
end if
%>
All the best
Vince