VB Calendar - 填充 mysql 事件表

发布于 2024-12-02 14:57:27 字数 331 浏览 1 评论 0原文

我在 mysql 中有一个包含日期的表,我想用事件或“活动”天来填充 vb 日历。

使用 sql 语句以及

Select event, date FROM dateTable WHERE event = eventType.SelectedValue

如何将这些作为事件放在日历上

<asp:Calendar runat="server" id="calendar1"></asp:calendar>

我确信我以某种方式使用 data:repeater 我只是无法弄清楚。

I have a table with dates in mysql that I want to populate a vb calendar with as events, or "active" days.

Using a sql statement with something like

Select event, date FROM dateTable WHERE event = eventType.SelectedValue

how do I put these as events on my calender

<asp:Calendar runat="server" id="calendar1"></asp:calendar>

I'm sure I use data:repeater in some way I just can't figure it out.

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

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

发布评论

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

评论(1

梦归所梦 2024-12-09 14:57:27

这是 MSDN 中有关显示数据库中选定日期的文章日历控件

您需要的修改是:

  • 将 SQL Server (System.Data.SqlClient) 代码替换为 适用于 .NET 的 MySQL 连接器(或您最喜欢的适用于 .NET 的 MySQL 库)。
  • 建议的改进可能是废弃 DataSet,并使用本地 MySqlDataReader

Here's MSDN's article on Displaying Selected Dates From a Database in the Calendar Control.

The modifications you'd need are:

  • swapping out the SQL Server (System.Data.SqlClient)code with the MySQL Connector for .NET (or your favorite MySQL library for .NET).
  • suggested improvements might be scrapping the DataSet, and go with a local MySqlDataReader instead
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文