In my asp.net mvc program, the user will input the date in one field and the time in another field. The time will be in 24hr mode so the user can enter 00:00 - 23:59, and the date should be in the typical mm/dd/yyyy.
With all the different options available for validating the input, such as javascript/jquery/masked input on the client side or c# in the mvc controller, I am finding it difficult to figure out which way is best.
Does anyone have a suggestion or advice on this one?