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.
YYYY/MM/DD HH24:mm:ss
you can split the whole string separated by spaces.
part(0) will be the date, part(1) will be time and part(2) will be am/pm.
[code]
datestring = split(the_whole_string, " ")
dateparts = datestring(0)
dateitems = split(dateparts, "/")
mm = dateitems(0)
dd = dateitems(1)
yyyy = dateitems(2)
new_date = yyyy & "/" & mm & "/" & dd
<%
strDate = objRsFolder("Timestamp")
datestring = split(strDate, " ")
dateparts = datestring(0)
dateitems = split(dateparts, "/")
mm = dateitems(0)
dd = dateitems(1)
yyyy = dateitems(2)
sDate = yyyy & "/" & mm & "/" & dd
%>
<td>
<%= sDate %>
</td>