I have a multi cultural website in ASP.Net MVC with an action filter which take care to set the current culture of the application depending on several criterias (database, cookie, etc).
My problem is that the user can submit a form with multiple inputs of type double. The post occured in an action with a parameter binded on the form containing one property by input. When the double contains a comma (French culture for example), the binding does not occur because the filter is called after the binding...
How can I resolve this issue?