Outsource House was established in 2000 to provide professional support services to micro, small and medium sized companies. Providing our clients with essential support services allows our clients to focus on their core competencies.
Posts tagged "date formats"
ASP Generate date between 2 different dates

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=”<%=...
ASP Date formats mm/dd/yyyy to dd/mm/yyyy

ASP Date formats mm/dd/yyyy to dd/mm/yyyy

Not exactly sure where i found this, but it has helped me on numerous occasions to format dates when servers are in South Africa and when they need to be moved to USA servers. Hope this helps you too. <% ReturnDateTime 1033, “English (US)” ReturnDateTime 2057, “English (UK)” ReturnDateTime 3081, “English (Australia)” ReturnDateTime 1031, “German”...