日历控件:在页面加载时选择今天的日期

发布于 2024-09-12 12:45:02 字数 189 浏览 2 评论 0原文

我在 asp .net webform 上有一个日历控件。在 Pag_Load 事件中,我

this.CalendarReportDay.SelectedDate = DateTime.Now;

设置了日历的选定日期,但今天的日期未在日历上突出显示。

有谁知道如何选择今天的日期?

I have a calendar control on a asp .net webform. In the Pag_Load event I have

this.CalendarReportDay.SelectedDate = DateTime.Now;

Which sets the Calendar's Selected Date but todays date is not highlighted on the calendar.

Does anyone know how to get todays date to be selected?

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

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

发布评论

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

评论(2

梦醒灬来后我 2024-09-19 12:45:03

您必须

this.CalendarReportDay.SelectedDate = DateTime.Now.Date;

在末尾设置 Date 属性,这一点很重要,否则 DateTime.Now 的时间部分将阻止选择。然后它获取应用的 SelectedDayStyle, fe

<asp:Calendar ID="CalendarReportDay" runat="server">
   <SelectedDayStyle Font-Size="X-Large" />
</asp:Calendar>

You have to set

this.CalendarReportDay.SelectedDate = DateTime.Now.Date;

The Date property at the end is important, otherwise the time component of DateTime.Now will prevent the selection. Then it gets the applied SelectedDayStyle, f.e.

<asp:Calendar ID="CalendarReportDay" runat="server">
   <SelectedDayStyle Font-Size="X-Large" />
</asp:Calendar>
趴在窗边数星星i 2024-09-19 12:45:02

SelectedDate 将设置日历的日期,但这并不意味着它将突出显示它。

一个问题是 DateTime.Now 包含时间,而日历只需要日期即可按预期工作,因此您可以使用 DateTime.Today 代替,例如

myCalendar.SelectedDate = DateTime.Today

显示日期(即让日历显示显示所选日期所需的正确月份和年份)使用 VisibleDate,例如

myCalendar.VisibleDate = dateToUse;

有关更多详细信息,请查看:

http://www.devtoolshed.com/content/how-highlight-day-aspnet-calendar -control-selecteddate-property

SelectedDate will set the calendar's date, but that does not mean it will highlight it.

One issue is that DateTime.Now includes the time whereas the calendar needs ONLY the date to work as expected, so you can use DateTime.Today instead, e.g.

myCalendar.SelectedDate = DateTime.Today

To show the date (i.e. to get the calendar to display the correct month and year needed to show the selected date) use VisibleDate, e.g.

myCalendar.VisibleDate = dateToUse;

For more details, have a look at:

http://www.devtoolshed.com/content/how-highlight-day-aspnet-calendar-control-selecteddate-property

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文