This topic is locked

Changing date pulldown values

10/14/2005 3:34:22 PM
ASPRunnerPro General questions
J
joeM author

How do I change the pulldown of the year so that it doesn't go back to 1940-2050. I want to just have the pulldown to be from 2005-2010.
Thanks!

Sergey Kornilov admin 10/15/2005

There is a function named WriteYears in include/..._aspfunctions.asp file.
Here is the line that displays years:

for x=Year(d)-50 to Year(d)+50


make it

for x=2005 to 2010