MVC3 globalization not set for ModelState.Value.Culture
问题 i have set culture in Action Filer as Thread.CurrentThread.CurrentCulture = Thread.CurrentThread.CurrentUICulture = new CultureInfo(culture); where culture = {fr-be} =>French Belgium. FYI, this action filter sets the culture on user choice. in one of myAction user is entering Date in format [dd/mm/yyyy] => 26/7/2011. Action is as follows public ActionResult RequestVacation(VacationRequest model) { if(ModelState.IsValid) { .... when i dubug the code model.VacationDate contains 01/01/0001 ;