ASP.NET MVC AJAX日历
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET MVC AJAX日历相关的知识,希望对你有一定的参考价值。
我目前正在学习ASP.NET MVC,我已经关注了Stephen Walther的教程:ASP.NET MVC Tip #36 – Create a Popup Calendar Helper。
日历正在运行,但我想将日期格式更改为dd / mm / yyyy。
您还可以在顶部添加箭头,以便日历可以按年份和月份更改吗?
答案
我知道这可能是出于学习目的,但已经存在一个很好的解决方案:JQuery UI Datepicker
另一答案
index.cs
[DataType(DataType.Date)]
public string StartDate { get; set; }
index.cshtml
@Html.EditorFor(m => m.StartDate)
以上是关于ASP.NET MVC AJAX日历的主要内容,如果未能解决你的问题,请参考以下文章
有没有办法在使用 Asp.Net MVC ActionLink、RedirectToAction 等时包含片段标识符?
单击日历时将数据加载到 PartialView (ASP.NET MVC)