pretty much copied the basic tutorial from w3schools, http://www.w3schools.com/ASPNET/aspnet_events.asp into my visual studio 2005 but its not working. you can see it not working at http://job1data.com:8098/default5.aspx, you can see the source .aspx in the attachment?
this is pretty basic can't image what is going wrong here

Your Page_Load does not have proper sytax. Change it as below

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
		Dim x
		If Not Page.IsPostBack Then
			lbl1.Text = "FIRST TIME LOAD The date and time is " & Now()
			'  Else
			'     lbl1.Text = "PAGE IS NOT FIRST TIME The date and time is " & Now()
		End If
		lbl3.Text = Page.IsPostBack
	End Sub
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.