回 帖 发 新 帖 刷新版面

主题:[讨论]利用c#如何实现在网页中动态的显示时间!

利用c#如何实现在网页中动态的显示时间,望高手指点。

回复列表 (共5个回复)

沙发


C# 中有没有像JSP中的SetTimeOut函数呢?

板凳

用脚本可以实现
我把代码弄丢了
网上可以找到

3 楼

用javascript实现

ASP.NET是服务器端技术

4 楼

找到代码了
      <div id="taa">aaa</div>
      <script language="javascript">
      window.setInterval(tests,1000);
      function tests()
      {
      var LastModDate = new Date(document.lastModified);
        taa.innerHTML=LastModDate.getHours()+":"+LastModDate.getMinutes()+":" +LastModDate.getSeconds();
      </script>

5 楼


谢谢楼上的

我来回复

您尚未登录,请登录后再回复。点此登录或注册