ASP Generate date between 2 different dates
So, if you need to have 2 different dates made as a drop down, here is the code: <select id=”spk_date” name=”spk_date”> <option selected=”selected” value=”">Select a Date</option> <% for counter = date()+1 to date()+60 %> <option <% ‘ select the current date to display it if counter = date() then %> <% end if %> value=”<%=...

