I am trying to see a variable for today's date and then add a month to it to create another variable:
<cfset Variables.DateToday = Now()>
<cfset Variables.DateValReq = DateAdd("m", 1, variables.DateToday)>
However, my output comes out as the following:
Variables.DateToday shows up as January 12, 1900
and
Variables.DateValReq becomes February 12, 1900
It is obvious my DateToday is going awry. Any help would be appreciated.
<cfset Variables.DateToday = Now()>
<cfset Variables.DateValReq = DateAdd("m", 1, variables.DateToday)>
However, my output comes out as the following:
Variables.DateToday shows up as January 12, 1900
and
Variables.DateValReq becomes February 12, 1900
It is obvious my DateToday is going awry. Any help would be appreciated.