<head>
<title>setTimeout()</title>
<style type="text/css">
input
{
font-size:30px
border-style:none
background-color:#ff8b3b
}
</style>
</head>
<body onLoad="disptime()">
<form name="myform" >
<table width="100%" border="0" align=center>
<tr>
<td width="37%"> </td>
<td width="41%"><h2>当前时间:<input name="myclock" type="text" value=" " size="10"></h2></td>
<td width="22%"> </td>
</tr>
</table>
</form>
</body>
</html>
<script type="text/javascript">
function disptime()
{
var time=new Date()
var hour=time.getHours()
var minute=time.getMinutes()
var second=time.getSeconds()
document.myform.myclock.value=hour+":"+minute+":"+second+" "
var myTime=setTimeout("disptime()",1000)
}
</script>
我刚刚写的
JS 是客户端脚本 无法显示数据库的时间的你可以用服务器空间 比如 lable 在 page_load 的时候 DateTime.Now().Tostring()
然后给这个lable赋值 就行了