请帮我看下为什么时间不显示,本人刚学,希望各位多指导
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="punctual.aspx.vb" Inherits="punctual" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.
<script language ="vbscript" runat="server">
Sub Page_Load()
time.Text = Hour(Now) & ":" & Minute(Now) & ":" & Second(Now)
End Sub
</script>
<html xmlns="http://www.
<head runat="server">
<title>The Punctual Web Server</title>
</head>
<body>
<h1>Welcome</h1>
In WebServerLand time is currently;
<asp:Label ID="time" runat="server" />
</body>
</html>