在asp.mvc上不断更新时间
我有一个 asp.mvc 文件,在其 Site.Master 页面中,我想连续更新时间。 这是我写的代码。
<asp:Label ID="DateTimeLabel" runat="server" Text=""><%= DateTime.Now.ToString()%></asp:Label>
谁能告诉我如何连续更改时间(我没有背景代码,即代码隐藏文件)?谢谢。
I am having a asp.mvc file and in its Site.Master page, I want to update the time continuously.
Here is the code I wrote.
<asp:Label ID="DateTimeLabel" runat="server" Text=""><%= DateTime.Now.ToString()%></asp:Label>
Can anyone tell me how to change the time continuously(I don't have background code i.e. code behind file)? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论您使用 WebForms 还是 MVC,这可能最好使用客户端 Javascript 来完成。请参阅本文了解操作方法。这是一个带有运行示例的更简单的实现。
Whether you're using WebForms or MVC this would probably better done with client side Javascript. See this article for a how to. Here's an even simpler implementation with a running example.