Going through the setting up of event handlers on pages I wound up with a source code very similar to that in the download source code -
except that I was missing the page load event:
Code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
WriteMessage("Page_Load")
End Sub
What do you think I may have done wrong?