Future date

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
crash
User
Posts: 151

Future date

Post by crash »

I'm running a page that gives me a list where the list is shown between two dates current date and +7 days... ie operator 1 and 2
In my first operation I have CurrentDate() this works fine.. in my secong operator I have CurrentDate() +7
this used to work inpervious versions where I had ew_CurrentDate()+7

Now It just wont work I've tried CurrentDate()+ 7 , add date and a few other options..

any help on how to use CurrentDate()+7

Thanks


MichaelG
User
Posts: 1111

Post by MichaelG »

You need to add 7 days to Today and format it. For example:

FormatDateTime(DateTime.Today.AddDays(7), 0)

Post Reply