Hello, need some help with an example in the book Beginning ASP.NET 1.0 with Visual Basic .NET. Here's the source code:
<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>
Now, can someone tell me why I get a page that has the text, but it doesn't tell the time after it like it says it's supposed to in the book?
Thx