使用HTML Helper标记添加日历控件

时间:2013-02-13 07:05:55

标签: c# asp.net asp.net-mvc-3

我需要知道如何使用Calendar标记添加HTML helper。我发现了一个名为Kendo的第三方库,但我可以在Visual Studio工具箱中提供的组件中使用它。

注意:我还需要为所选日期着色,启用/禁用日历中的某些日期

2 个答案:

答案 0 :(得分:1)

如果您使用的是Asp.net mvc3,请尝试使用此代码..

  using System;
  using System.Collections.Generic;
  using System.Globalization;
  using System.Linq;
  using System.Text;
  using System.Web;
  using System.Web.Mvc;

 namespace AntiYes.Helpers
{
public static class CalendarExtensions
{
    public static IHtmlString Calendar(this HtmlHelper helper, DateTime dateToShow)
    {
        DateTimeFormatInfo cinfo = DateTimeFormatInfo.CurrentInfo;
        StringBuilder sb = new StringBuilder();
        DateTime date = new DateTime(dateToShow.Year, dateToShow.Month, 1);
        int emptyCells = ((int)date.DayOfWeek + 7 - (int)cinfo.FirstDayOfWeek) % 7;
        int days = DateTime.DaysInMonth(dateToShow.Year, dateToShow.Month);
        sb.Append("<table class='cal'><tr><th colspan='7'>" + cinfo.MonthNames[date.Month - 1] + " " + dateToShow.Year + "</th></tr>");
        for (int i = 0; i < ((days + emptyCells) > 35 ? 42 : 35); i++)
        {
            if (i % 7 == 0)
            {
                if (i > 0) sb.Append("</tr>");
                sb.Append("<tr>");
            }

            if (i < emptyCells || i >= emptyCells + days)
            {
                sb.Append("<td class='cal-empty'>&nbsp;</td>");
            }
            else
            {
                sb.Append("<td class='cal-day'>" + date.Day + "</td>");
                date = date.AddDays(1);
            }
        }
        sb.Append("</tr></table>");
        return helper.Raw(sb.ToString());
    }
}

}

答案 1 :(得分:0)

如果我正确理解您的问题,只需将工具栏中的日历控件Ddrag拖到您的表单上即可。然后,您可以访问它的属性以相应地生成日历。