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.
<%
function ToMinutes(strIn)
dim times
Times = split(strIn,":")
ToMinutes = (Cint(Times(0) * 60)) + Cint(Times(1))
end function
%>
dim thisTime, timeArray, totalMins
thisTime = "144:58:12"
thisTimeArray = Split(thisTime, ":")
totalMins = (thisTimeArray(0) * 60) + thisTimeArray(1)
Response.Write(totalMins)
Response.End