我有一个asp.mvc文件,在其Site.Master页面中,我想要不断更新时间。 这是我写的代码。
<asp:Label ID="DateTimeLabel" runat="server" Text=""><%= DateTime.Now.ToString()%></asp:Label>
任何人都可以告诉我如何连续更改时间(我没有后台代码,即代码隐藏文件)?谢谢。
答案 0 :(得分:2)
无论您使用的是WebForms还是MVC,最好使用客户端Javascript。见this article for a how to。这是偶数simpler implementation with a running example。