作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望创建一个 MVC 网页,以日历格式显示一年中的 12 个月。在每月的每一天中,我只会将有任何事件的日期(来自数据库的数据)加粗。事件日期也将超链接到/Activity/2008/12/25 之类的路线
我将尝试尝试使用 asp.net ajax 控件工具包日历控件,但想知道是否还有其他人有任何建议。
最佳答案
渲染日历并不是特别复杂。通过在 System.Globalization 和 DateTime 中使用 DateTimeFormatInfo 可以检索所有必要的信息:
_ _ _ 1 2 3 4
5 6 7 8 9 ...
DateTime date = new DateTime(year, month, 1);
int emptyCells = ((int)date.DayOfWeek + 7
- (int)DateTimeFormatInfo.CurrentInfo.FirstDayOfWeek) % 7;
int days = DateTime.DaysInMonth(year, month);
for (int i = 0; i != 42; i++)
{
if (i % 7 == 0) {
writer.WriteLine("<tr>");
if( i > 0 ) writer.WriteLine("</tr>");
}
if (i < emptyCells || i >= emptyCells + days) {
writer.WriteLine("<td class=\"cal-empty\"> </td>");
} else {
writer.WriteLine("<td class=\"cal-day\"\">" + date.Day + "</td>");
date = date.AddDays(1);
}
}
关于asp.net-mvc - 在 asp.net mvc 中显示带有自定义超链接的日历年,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/764981/
我是一名优秀的程序员,十分优秀!