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.
<job id=UTCDemo>
<script language=jscript>
function strUTCDate(aDate)
{
var d, s;
d = new Date(aDate);
s = (d.getUTCMonth() + 1) + "/";
s += d.getUTCDate() + "/";
return(s + d.getUTCFullYear());
}
</script>
<script language = vbscript>
Dim dtDate, dtUTC
dtDate = Date
dtUTC = CDate(strUTCDate(dtDate))
MsgBox "Local date: " & CStr(dtDate) & _
" UTC Date: " & CStr(dtUTC)
</script>
</job>
<SCRIPT LANGUAGE=JScript RUNAT=Server>
function...
...
</SCRIPT>
dtBirth = CDate(strBirth)
dtBirth = strBirth.CDate()