使用HTML Helper标记添加日历控件
本文关键字:添加 日历 控件 HTML Helper 使用 | 更新日期: 2023-09-27 17:59:09
我需要知道如何使用HTML helper
标记添加Calendar
。我找到了一个名为Kendo的第三方库,但在VisualStudio工具箱中提供的组件中,有什么可以使用的吗。
注意:我还需要为选定的日期上色,启用/禁用日历中的某些日期
如果您使用的是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'> </td>");
}
else
{
sb.Append("<td class='cal-day'>" + date.Day + "</td>");
date = date.AddDays(1);
}
}
sb.Append("</tr></table>");
return helper.Raw(sb.ToString());
}
}
}
如果我正确理解你的问题,只需将一个日历控件从工具栏拖动到你的窗体上。然后你就可以访问它的属性来相应地影响日历。