while inserting it do this:
<%
sql="insert into table(TheDate) values('"&now&"')"
%>
this will insert the date and time into TheDate field, u can always select the last record by:
<%
sql="select * from table order by TheDate desc"
rs.open sql,con
if not(rs.bof and rs.eof) then
response.write "Latest record -" &rs("TheDate")
end if
%>
Known is handfull, Unknown is worldfull