I\'m working on some internationalization using jQueryUI. I have a DatePicker control on a form that is properly working in the French language.
When I select a dat
Solution working for ASP.NET
@using (Html.BeginForm("ActionName", "ControllerName")) { @Html.HiddenFor(m => m.DateFrom) @Html.HiddenFor(m => m.DateTo) @Html.LabelFor(m => m.DateFrom) @Html.LabelFor(m => m.DateTo) } @section scripts { }