Hi
I have justed started to learn ASP and am trying to run the simple piece of code below. However when i run this code the message is displayed and not the time. If anyone has any help on this it would be much appreciated.
<script language="
vb" runat="server">
Sub Page_Load()
time.text=Hour(Now) & ":" & Minute(Now) & ":" & Second(Now)
End Sub
</script>
<html>
<head><title>The Punctual Web Server</title></head>
<body>
<h1>Welcome</h1>
In WebServerLand the time is currently:
<asp:label id="time" runat="server" />
</body>
</html>