I have this script in an ASPX page that should execute when the page loads but doesn't and I don't know why:
Code:
<script runat="server">
	Sub Page_Load
		LabelWelcome.Text = The date and time is " & now()
	End Sub
</script>
Does anybody have any ideas?