jQuery datepicker's dateFormat - how to integrate with .NET current culture DateTimeFormat

前端 未结 3 1072
半阙折子戏
半阙折子戏 2020-12-18 05:34

I\'m using jQuery\'s datepicker plugin in .NET ASP MVC3 intranet application. User that use application have offices in different countries and different locale. This is why

3条回答
  •  [愿得一人]
    2020-12-18 05:51

    store in hidden field

            
    
            @Html.HiddenFor(model=>model.StartDate)
            @Html.HiddenFor(model=>model.EndDate)
            
            
            
    

提交回复
热议问题