Print Page | Close Window

Dynamic Dropdown Box

Printed From: Web Wiz Forums
Category: General Discussion
Forum Name: Classic ASP Discussion
Forum Description: Discussion on Active Server Pages (Classic ASP).
URL: https://forums.webwiz.net/forum_posts.asp?TID=15531
Printed Date: 30 March 2026 at 5:00am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Dynamic Dropdown Box
Posted By: Diddl
Subject: Dynamic Dropdown Box
Date Posted: 21 June 2005 at 4:00am
Hi

Im currently working on a online booking system, and i need to have a dropdownbox filled with time values starting from time X like 09:00 and end 16:00

All time values showed with a 15 min so it looks like this:

<option value="8:00">8:00</option>
<option value="8:15">8:15</option>
<option value="8:30">8:30</option>
<option value="8:45">8:45</option>
<option value="9:00">9:00</option>
etc...

i could put all the values in a database, but i would like to do without if possible?

Hope someone can help me.



Replies:
Posted By: Phat
Date Posted: 21 June 2005 at 4:43am
Something like


starttime = 12

    For i = 1 To 100
        Response.write(Formatdatetime(DateAdd("n", 15, starttime), 3) & "<br>")
        starttime = FormatDateTime(DateAdd("n", 15, starttime), 3)
    Next



of the top of my head so you will need to mod it to suit.


-------------
http://buildit.sitesell.com/sitebuildithome.html - Get a website that sells


Posted By: ub3rl337ch3ch
Date Posted: 21 June 2005 at 7:14pm
use 4 in the formatdatetime so it'll keep it in 24 hr time
  
<select>
<%
starttime = 9
starttime = FormatDateTime(starttime,4)
 
For i = 1 To 28
%>
<option value="<%=starttime%>"><%=starttime%></option>
starttime = FormatDateTime(DateAdd("n",15,starttime),4)
<%
Next
%>
</select>
 


Posted By: Diddl
Date Posted: 22 June 2005 at 4:36pm
Thanks for the help

I used the first script you wrote, to help me figure out a way to make it work... It got modified a lot, but i was just the thing i needed to see the way.




Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net