Asp.net 日历不呈现前一天/后一天

发布于 2024-08-28 01:19:52 字数 56 浏览 5 评论 0原文

怎么做呢。例如,三月的日历还将显示二月和四月的日期。我不想让他们被展示。怎么办。有人有示例代码吗?

How to do it. For example the calendar for march will also show days from feb and april. I dont want them to be shown. How to do. Anyone have sample code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉态萌生 2024-09-04 01:19:52

在 DayRender 事件中,检查日期。如果是上个月或下个月,请将单元格的文本设为  

In the DayRender event, check the date. If it falls in the previous or the next month, make the cell's text a  

明媚如初 2024-09-04 01:19:52
public void objCalendar_DayRender(object sender, DayRenderEventArgs e)
{
    CalendarDay d = ((DayRenderEventArgs)e).Day;

    TableCell c = ((DayRenderEventArgs)e).Cell;
    if (d.IsOtherMonth)
    {
        c.Controls.Clear();
    }
    else
    {
            //stuff
    }
}
public void objCalendar_DayRender(object sender, DayRenderEventArgs e)
{
    CalendarDay d = ((DayRenderEventArgs)e).Day;

    TableCell c = ((DayRenderEventArgs)e).Cell;
    if (d.IsOtherMonth)
    {
        c.Controls.Clear();
    }
    else
    {
            //stuff
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文