<html>
<body>
<h1>WELCOME</h1>
<asp:label id="lbltime" runat="server" />
</body>
</html>
<script language="vb" runat="server">
sub page_load()
lbltime.text=hour(now) & ":" & minute(now) &":" & second(now)
end sub
</script>