显示数据绑定日期的日历控件

发布于 2024-10-10 18:16:45 字数 116 浏览 2 评论 0原文

我有一个数据绑定日历控件,可以从数据库加载日期。 我遇到的问题是,加载表单时它默认为今天的日期,尽管当您滚动到加载日期时,您会看到实际上选择了正确的日期。如何强制它从一开始就显示数据库的加载日期?

谢谢

I have a databound calendar control that loads the date from the database.
The problem I have is that it defaults to todays date when the form is loaded, although when you scroll to the loaded date you see that the correct date is in fact selected. How can I force it to show the loaded date from the database from the start?

Thanks

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

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

发布评论

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

评论(2

数理化全能战士 2024-10-17 18:16:45

您是否正在设置日历可见日期?

http://msdn.microsoft.com /en-us/library/system.web.ui.webcontrols.calendar.visibledate.aspx

获取或设置指定要在日历控件上显示的月份的 DateTime 值。默认值为 DateTime.MinValue,它显示包含 TodaysDate 指定日期的月份。

你知道,文档是为了阅读而编写的:)

Are you setting the Calendars Visible date?

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.calendar.visibledate.aspx

Gets or sets the DateTime value that specifies the month to display on the Calendar control. The default value is DateTime.MinValue, which displays the month that contains the date specified by TodaysDate.

You know, documentation is made for reading :)

岛歌少女 2024-10-17 18:16:45

我设法找到了解决方法。我在设计时设置了日历控件的 SelectedDate 属性,然后在控件的 Prerender 事件中,使用发送者的 SelectedDate 属性来设置控件的 VisibleDate 属性。然后它会显示正确的月份和正确的所选日期。 :-)

I managed to find a work around. I set the Calendar control's SelectedDate property at design time, and then in the Prerender event of the control, I use the sender's SelectedDate property to set the VisibleDate property of the Control. It then shows both the correct month and correct selected date. :-)

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