Please do not cross post:
http://p2p.wrox.com/topic.asp?TOPIC_ID=38322
Your other post asks for a 'in asp.net with
vb.net code behind' solution - what exactly are you after?
If its classic ASP/VBScript you could use the dateDiff function:
------------cut n paste code-----------------
<%
dim dateOne,dateTwo
dateOne = "12/12/2005"
dateTwo = "12/01/2006"
response.write DateDiff("yyyy", dateOne, dateTwo) & " Years, " & DateDiff("m", dateOne, dateTwo) & " Months, " & DateDiff("d", dateOne, dateTwo) & " Days"
%>
---------------------------------------------
Wind is your friend
Matt