Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
strDOB = rsBirthDayMod("DOB")
Age = DateDiff("yyyy", strDOB, Now)
If Date < DateSerial(Year(Now), Month(strDOB), Day(strDOB)) Then
Age = Age - 1
End If
Age = CInt(Age)
Response.Write("(" & Age & ")")
rsBirthDayMod.MoveNext
If NOT rsBirthDayMod.EOF Then Response.Write(", ")
Loop
End If