gsc123
Programmer
- Jan 24, 2008
- 197
i want to add the date and time to a database from a form so it needs to be a selectable time and date, is there anything out their to use to pick date and time?
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.
<select id="mm">
<option value="0">00</option>
<%
' if you want to increment by certain amounts
' add step 5 or whatever number you want to the first line
for i = 0 to 59
x = x + 1
if x < 10 then
x = "0" & x
end if
%>
<option value="<%=x%>"><%=x%></option>
<%
next
%>
</select>