I have a asp.net textbox for date input, I use regular expression to let the user input date in dd-mm-yyyy format but when i convert the input date in datetime object, the month and day values are interchanged. How can a specify the right way for interpreting this input date?
|
|
You can use DateTime.ParseExact |
|||
|
|
You can accomplish this by specifying a culture that uses the format dd-mm-yyyy like Germany:
produces:
Of course, you really want to do all of your culture specific processing in the culture of your user. So, And if your user isn't used to seeing dates like dd-mm-yyyy, then don't use that format. |
|||
|
|
|
I'm suggesting to use DateTime.TryParseExact() and specify your date format. |
|||
|
|
|
I've used DateTime.Parse() in the past. But it sounds like you are have culture issue, so this approach might be better:
More info on msdn: http://msdn.microsoft.com/en-us/library/ey1cdcx8(VS.96).aspx But you could also build the date time up if that works better:
|
|||
|
|
|
It sounds like the app is running under a different culture to what you are expecting as user input. You might want to change the culture to the one you are expecting. |
|||
|
|