Ok, I'm not quite sure how to go about this. Here's the scenario.
1) On a web form we have 3 dropdowns: Month, Day, and Year
2) Year is always optional (not required)
3) If the customer enters month and day, and not year, we want to default the year to 1900
4) If the customer does enter all 3, I need to piece together a DateTime to represent that. Either way, the year is going to have something...either a valid year or 1900 if the user did not select year.
So in my code-behind, I'm not quite sure how to set all this up. Ultimately I need to form that date so I can update the SQL 2008 Date datatype once I send down the date to my DL update function.
So I created a DataTime variable in my code-behind method that picks up the values that the user has selected in each dropdown. However I guess there's no setter on DateTime.Year and so fourth. So I can't just do DateTime.year = "1900" or something to that effect.
