I have to work with dates and times in my .NET project, and one of the things I need to do is get the current date and add 2 weeks onto it, and if the date the user entered is after those two weeks throw out an error. Or, if the date they entered is before the current date throw out another error.
Now, I know how to do this, but not with the way .NET seems to handle dates. I have only actually worked with timestamps in the past (probably because everything I've done in the past has been on Unix) and .NET doesn't seem to have a timestamp way of handling the date or time.
Can anyone tell me how I would go about this?
Thank you.