Startdate - Enddate dropdown not working ASP, IIS6

Startdate - Enddate dropdown not working ASP, IIS6

am 03.10.2007 15:25:55 von sd_eds

I have a startdate-enddate dropdown in asp that works great on my
development machine (XP Pro IIS5) but when I port it over to the web
server (Win Server 2003, IIS6), I do not get the desired results. What
should happen is that the start-end range should show the current
week. Instead, the start-end range defaults to 2 months earlier, when
the page was deployed.

I have added some code below:

<% dim begindate, enddate, startdate %>


">
">



Any help or insight would be appreciated.

Thanks

Re: Startdate - Enddate dropdown not working ASP, IIS6

am 03.10.2007 15:56:45 von exjxw.hannivoort

sd_eds wrote on 03 okt 2007 in microsoft.public.inetserver.asp.general:

> I have a startdate-enddate dropdown in asp that works great on my
> development machine (XP Pro IIS5) but when I port it over to the web
> server (Win Server 2003, IIS6), I do not get the desired results. What
> should happen is that the start-end range should show the current
> week. Instead, the start-end range defaults to 2 months earlier, when
> the page was deployed.
>
> I have added some code below:
>
> <% dim begindate, enddate, startdate %>

Not necessary, unless you use
Option Explicit
first

>


> ">
> ">
>
>





--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Re: Startdate - Enddate dropdown not working ASP, IIS6

am 03.10.2007 18:28:15 von sd_eds

Thanks for the help.