VB Calendar - 填充 mysql 事件表
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 MSDN 中有关显示数据库中选定日期的文章日历控件。
您需要的修改是:
System.Data.SqlClient
) 代码替换为 适用于 .NET 的 MySQL 连接器(或您最喜欢的适用于 .NET 的 MySQL 库)。Here's MSDN's article on Displaying Selected Dates From a Database in the Calendar Control.
The modifications you'd need are:
System.Data.SqlClient
)code with the MySQL Connector for .NET (or your favorite MySQL library for .NET).