显示当前时间
<html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server">
<title>窗体尺寸</title>
<script language="vbscript" runat="server" >
Sub page_load(ByVal sender As Object, ByVal e As EventArgs)
current.value = Now
count.Value = counter()
End Sub
Function counter()
counter = Application("counter") + 1
Application("counter") = counter
End Function
</script>
</head>
<body>
<div>
当前时间:<input type="text" id="current" runat="server" /><p></p>
访问量:<input type="text" id="count" runat="server" />
</div>
</body>
</html>
在.net做的 但是生成页后 显示为空啊 我是新手请赐教
补充:.NET技术 , ASP.NET