在VB.net中禁用页面特定时间

时间:2015-04-27 12:13:25

标签: vb.net

我正在尝试禁用在单击应用程序中的超链接时打开的页面。我的应用程序是使用VB.Net开发的。 我们可以使用Timer功能吗?

1 个答案:

答案 0 :(得分:1)

有多种方法可以显示维护通知消息。我首选的方法是使用名为MaintenanceNotification的数据库表。

然后,当您加载页面时,检查数据库中是否有现有通知,如果有,请正确处理。

**MaintenanceNotification**
MaintenanceNotificationId
StartDate
EndDate
Message
Comments

修改

要在每天的同一时间显示消息,当页面加载时,将DateTime.Now.TimeOfDay与您希望消息显示的时间进行比较(使用TimeSpan)。

Psuedo代码:

If DateTime.Now.TimeOfDay is >= start time AND ALSO DateTime.Now.TimeOfDay <= end time THEN
     'display the message.
END IF