please i need someone to help me with problem. i did a disc clean up and system gave a message my OS my not work properly. i tried to create a virtual directry after this but my internet information services icon in administrative tools was grayed out as i double click it so i now reinstalled another iis. i tested it by launching iisstart and localstart which was ok but i tried launching my ASP.NET pages but i continue to recieve a message in the staus bar that Done but with errors and i tried this sample code below from Begining ASP.NET with
vb what is displayed is just in webserverland the time is currently: the time will not show infact i even copied and pasted this codes but still will not display the time. please help
<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>