hi, how do you add days automatically to current date? lets say i created an account in my program, and get its current date, augest 3 2011 for example, how would i add days automatically every after day, still keeps the date when i created my account. my goal is after 7 days, i want to remind my user to update his profile. i have this code add days.
DateTime tomorrow = DateTime.Today.AddDays( 7 );//
formattedDate = tomorrow.ToString("dd / MM / yy");